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:
Benjamin Walsh 2017-01-22 11:02:13 -05:00 committed by Anas Nashif
commit 3f3f4d94d5

View file

@ -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 */