aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-02-01 20:07:14 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-02-01 20:07:14 +0000
commit3b31842a05737a1ff36d53b0141b05e60f1bdc0a (patch)
tree5586b7a74304b5d2b0b2f5c3946c2dbf494c991b
parent52923f77318483b1b9384bb4f92ff9e55f298293 (diff)
downloadChibiOS-3b31842a05737a1ff36d53b0141b05e60f1bdc0a.tar.gz
ChibiOS-3b31842a05737a1ff36d53b0141b05e60f1bdc0a.tar.bz2
ChibiOS-3b31842a05737a1ff36d53b0141b05e60f1bdc0a.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@710 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--demos/Win32-MinGW/chtypes.h1
-rw-r--r--ports/ARM7/chtypes.h1
-rw-r--r--ports/ARMCM3/chtypes.h1
-rw-r--r--ports/AVR/chtypes.h1
-rw-r--r--ports/MSP430/chtypes.h1
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.*/