mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 08:38:38 +08:00
Priority Inversion fixes:Initalization
This commit is contained in:
parent
6cc8f9100b
commit
60d8606b19
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ typedef struct sem_s sem_t;
|
|||
{(c), 0, NULL} /* semcount, flags, hhead */
|
||||
# else
|
||||
# define SEM_INITIALIZER(c) \
|
||||
{(c), 0, SEMHOLDER_INITIALIZER, SEMHOLDER_INITIALIZER} /* semcount, flags, holder[2] */
|
||||
{(c), 0, {SEMHOLDER_INITIALIZER, SEMHOLDER_INITIALIZER}} /* semcount, flags, holder[2] */
|
||||
# endif
|
||||
#else
|
||||
# define SEM_INITIALIZER(c) \
|
||||
|
|
Loading…
Reference in a new issue