git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@710 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2009-02-01 20:07:14 +00:00
parent 52923f7731
commit 3b31842a05
5 changed files with 0 additions and 5 deletions

View File

@ -32,7 +32,6 @@
typedef int8_t bool_t; typedef int8_t bool_t;
typedef uint8_t tmode_t; typedef uint8_t tmode_t;
typedef uint8_t tstate_t; typedef uint8_t tstate_t;
typedef uint16_t tid_t;
typedef uint32_t tprio_t; typedef uint32_t tprio_t;
typedef int32_t msg_t; typedef int32_t msg_t;
typedef int32_t eventid_t; typedef int32_t eventid_t;

View File

@ -37,7 +37,6 @@
typedef int32_t bool_t; /**< Fast boolean type. */ typedef int32_t bool_t; /**< Fast boolean type. */
typedef uint8_t tmode_t; /**< Thread flags. */ typedef uint8_t tmode_t; /**< Thread flags. */
typedef uint8_t tstate_t; /**< Thread state. */ typedef uint8_t tstate_t; /**< Thread state. */
typedef uint16_t tid_t; /**< Thread sequential Id. */
typedef uint32_t tprio_t; /**< Thread priority. */ typedef uint32_t tprio_t; /**< Thread priority. */
typedef int32_t msg_t; /**< Inter-thread message. */ typedef int32_t msg_t; /**< Inter-thread message. */
typedef int32_t eventid_t; /**< Event Id. */ typedef int32_t eventid_t; /**< Event Id. */

View File

@ -32,7 +32,6 @@
typedef int32_t bool_t; typedef int32_t bool_t;
typedef uint8_t tmode_t; typedef uint8_t tmode_t;
typedef uint8_t tstate_t; typedef uint8_t tstate_t;
typedef uint16_t tid_t;
typedef uint32_t tprio_t; typedef uint32_t tprio_t;
typedef int32_t msg_t; typedef int32_t msg_t;
typedef int32_t eventid_t; typedef int32_t eventid_t;

View File

@ -32,7 +32,6 @@
typedef int8_t bool_t; typedef int8_t bool_t;
typedef uint8_t tmode_t; typedef uint8_t tmode_t;
typedef uint8_t tstate_t; typedef uint8_t tstate_t;
typedef uint8_t tid_t;
typedef uint8_t tprio_t; typedef uint8_t tprio_t;
typedef int16_t msg_t; typedef int16_t msg_t;
typedef uint8_t eventid_t; typedef uint8_t eventid_t;

View File

@ -37,7 +37,6 @@
typedef int16_t bool_t; /* Signed boolean. */ typedef int16_t bool_t; /* Signed boolean. */
typedef uint8_t tmode_t; /* Thread mode flags, uint8_t is ok. */ typedef uint8_t tmode_t; /* Thread mode flags, uint8_t is ok. */
typedef uint8_t tstate_t; /* Thread state, 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 uint16_t tprio_t; /* Priority, use the fastest unsigned type. */
typedef int16_t msg_t; /* Message, use signed pointer equivalent.*/ typedef int16_t msg_t; /* Message, use signed pointer equivalent.*/
typedef int16_t eventid_t; /* Event Id, use fastest signed.*/ typedef int16_t eventid_t; /* Event Id, use fastest signed.*/