Defines | |
| #define | TSK_CREATE(name) |
| Create a task. | |
Functions | |
| HANDLE * | TSK_Self (void) |
| Get current running task handle. | |
| void | TSK_Sleep (HANDLE *ph, uint16 tout) |
| Task sleep function. | |
| void | TSK_Suspend (HANDLE *ph) |
| Task suspend function. | |
| void | TSK_Resume (HANDLE *ph) |
| Task resume function. | |
|
|
Create a task. This macro creates a task. |
|
|
Task resume function. Resume a previously suspended task.
|
|
|
Get current running task handle.
|
|
||||||||||||
|
Task sleep function. Delay a task from execution for the specified amount of timer ticks. When the timeout expires the task is unblocked and is ready to execute. The TSK_TOUT value is passed to it.
|
|
|
Task suspend function. Suspend a task from execution, until the task is it explicitely resumed.
|
1.4.3