kernel: remove K_STATIC
Unused. Reuse bit for K_FP_REGS to keep the used bits the lowest possible. Change-Id: I5998801ef34156271d4f66d1948a05e0b2ce58f7 Signed-off-by: Benjamin Walsh <walsh.benj@gmail.com>
This commit is contained in:
parent
dfa7ce5c94
commit
3f3f4d94d5
1 changed files with 1 additions and 4 deletions
|
@ -47,12 +47,9 @@
|
|||
|
||||
/* execution flags: common uses low bits, arch-specific use high bits */
|
||||
|
||||
/* thread is defined statically */
|
||||
#define K_STATIC (1 << 0)
|
||||
|
||||
#if defined(CONFIG_FP_SHARING)
|
||||
/* thread uses floating point registers */
|
||||
#define K_FP_REGS (1 << 1)
|
||||
#define K_FP_REGS (1 << 0)
|
||||
#endif
|
||||
/* end - execution flags */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue