diff options
Diffstat (limited to 'src/include/threads.h')
-rw-r--r-- | src/include/threads.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/include/threads.h b/src/include/threads.h index 5877f49da..00f5e2714 100644 --- a/src/include/threads.h +++ b/src/include/threads.h @@ -43,8 +43,6 @@ struct Thread { /** The thread priority.*/ tprio_t p_prio; /* End of the fields shared with the ReadyList structure. */ - /** Thread identifier. */ - tid_t p_tid; /** Current thread state.*/ tstate_t p_state; /** Mode flags. */ @@ -156,7 +154,6 @@ struct Thread { #define P_MEM_MODE_HEAP 1 /* Thread memory mode: heap. */ #define P_MEM_MODE_MEMPOOL 2 /* Thread memory mode: mempool. */ #define P_TERMINATE 4 /* Termination requested. */ -#define P_SUSPENDED 8 /* Create suspended (old). */ /* Not an API, don't use into the application code.*/ Thread *init_thread(Thread *tp, tprio_t prio); |