mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-12 09:07:46 -04:00
missed one fix
This commit is contained in:
parent
a71087e841
commit
4c9c51bba2
1 changed files with 1 additions and 1 deletions
2
tasks.c
2
tasks.c
|
@ -229,7 +229,7 @@
|
|||
* task should be used in place of the parameter. This macro simply checks to
|
||||
* see if the parameter is NULL and returns a pointer to the appropriate TCB.
|
||||
*/
|
||||
#define prvGetTCBFromHandle( pxHandle ) ( ( ( pxHandle ) == NULL ) ? pxCurrentTCB : ( pxHandle ) )
|
||||
#define prvGetTCBFromHandle( pxHandle ) ( ( ( pxHandle ) == NULL ) ? pxCurrentTCB : ( TCB_t * ) ( pxHandle ) )
|
||||
|
||||
/* The item value of the event list item is normally used to hold the priority
|
||||
* of the task to which it belongs (coded to allow it to be held in reverse
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue