Main Page   Modules   Alphabetical List   Data Structures   File List   Data Fields   Globals   Related Pages  

Process Informations
[Multitasking]


Functions

task_tget_curr_task ()
 Get the current task.
Returns:
The current task structure pointer.


char * get_pname ()
 Return the current task name if there is a curr_task.
Returns:
The current task name.



Detailed Description

Operators to get some processes informations.

Function Documentation

task_t* get_curr_task  
 

Get the current task.

Returns:
The current task structure pointer.

Definition at line 203 of file task.c.

00204 {
00205         return( curr_task );
00206 }

char* get_pname  
 

Return the current task name if there is a curr_task.

Returns:
The current task name.

Definition at line 210 of file task.c.

00211 {
00212         if ( !curr_task ) return( NULL );
00213         return( curr_task->name );
00214 }


Generated on Fri Feb 20 15:32:23 2004 for Minirighi by doxygen1.2.18