We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a75f5fa commit 0ba8614Copy full SHA for 0ba8614
lib/posix/options/posix_internal.h
@@ -68,10 +68,10 @@ struct posix_thread {
68
69
struct posix_condattr {
70
/* leaves room for CLOCK_REALTIME (1, default) and CLOCK_MONOTONIC (4) */
71
- unsigned int clock: 3;
72
- bool initialized: 1;
+ unsigned char clock: 3;
+ char initialized: 1;
73
#ifdef _POSIX_THREAD_PROCESS_SHARED
74
- unsigned int pshared: 1;
+ unsigned char pshared: 1;
75
#endif
76
};
77
0 commit comments