diff options
-rw-r--r-- | demos/Win32-MinGW/chtypes.h | 1 | ||||
-rw-r--r-- | ports/ARM7/chtypes.h | 1 | ||||
-rw-r--r-- | ports/ARMCM3/chtypes.h | 1 | ||||
-rw-r--r-- | ports/AVR/chtypes.h | 1 | ||||
-rw-r--r-- | ports/MSP430/chtypes.h | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/demos/Win32-MinGW/chtypes.h b/demos/Win32-MinGW/chtypes.h index 6f8662bd9..354da269e 100644 --- a/demos/Win32-MinGW/chtypes.h +++ b/demos/Win32-MinGW/chtypes.h @@ -32,7 +32,6 @@ typedef int8_t bool_t;
typedef uint8_t tmode_t;
typedef uint8_t tstate_t;
-typedef uint16_t tid_t;
typedef uint32_t tprio_t;
typedef int32_t msg_t;
typedef int32_t eventid_t;
diff --git a/ports/ARM7/chtypes.h b/ports/ARM7/chtypes.h index 387ce6413..faf0ee0fc 100644 --- a/ports/ARM7/chtypes.h +++ b/ports/ARM7/chtypes.h @@ -37,7 +37,6 @@ typedef int32_t bool_t; /**< Fast boolean type. */
typedef uint8_t tmode_t; /**< Thread flags. */
typedef uint8_t tstate_t; /**< Thread state. */
-typedef uint16_t tid_t; /**< Thread sequential Id. */
typedef uint32_t tprio_t; /**< Thread priority. */
typedef int32_t msg_t; /**< Inter-thread message. */
typedef int32_t eventid_t; /**< Event Id. */
diff --git a/ports/ARMCM3/chtypes.h b/ports/ARMCM3/chtypes.h index ab0dc36c8..4f00eb65f 100644 --- a/ports/ARMCM3/chtypes.h +++ b/ports/ARMCM3/chtypes.h @@ -32,7 +32,6 @@ typedef int32_t bool_t;
typedef uint8_t tmode_t;
typedef uint8_t tstate_t;
-typedef uint16_t tid_t;
typedef uint32_t tprio_t;
typedef int32_t msg_t;
typedef int32_t eventid_t;
diff --git a/ports/AVR/chtypes.h b/ports/AVR/chtypes.h index 2cd9c681c..91e8ee055 100644 --- a/ports/AVR/chtypes.h +++ b/ports/AVR/chtypes.h @@ -32,7 +32,6 @@ typedef int8_t bool_t;
typedef uint8_t tmode_t;
typedef uint8_t tstate_t;
-typedef uint8_t tid_t;
typedef uint8_t tprio_t;
typedef int16_t msg_t;
typedef uint8_t eventid_t;
diff --git a/ports/MSP430/chtypes.h b/ports/MSP430/chtypes.h index 1b7f3704b..218617cfe 100644 --- a/ports/MSP430/chtypes.h +++ b/ports/MSP430/chtypes.h @@ -37,7 +37,6 @@ typedef int16_t bool_t; /* Signed boolean. */
typedef uint8_t tmode_t; /* Thread mode flags, uint8_t is ok. */
typedef uint8_t tstate_t; /* Thread state, uint8_t is ok. */
-typedef uint16_t tid_t; /* Thread id. */
typedef uint16_t tprio_t; /* Priority, use the fastest unsigned type. */
typedef int16_t msg_t; /* Message, use signed pointer equivalent.*/
typedef int16_t eventid_t; /* Event Id, use fastest signed.*/
|