aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/include/chthreads.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-08-10 08:07:43 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-08-10 08:07:43 +0000
commitc3dc5598c315f4650bfcd1e595104a2ace7aa87c (patch)
tree890774f4ca76e9729624adfc0254544791e9cecb /os/kernel/include/chthreads.h
parent16712a78831d021d9ee40ade082aefafc9aea196 (diff)
downloadChibiOS-c3dc5598c315f4650bfcd1e595104a2ace7aa87c.tar.gz
ChibiOS-c3dc5598c315f4650bfcd1e595104a2ace7aa87c.tar.bz2
ChibiOS-c3dc5598c315f4650bfcd1e595104a2ace7aa87c.zip
Global variables consolidation.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6116 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel/include/chthreads.h')
-rw-r--r--os/kernel/include/chthreads.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/os/kernel/include/chthreads.h b/os/kernel/include/chthreads.h
index 66d000d7e..22f499edf 100644
--- a/os/kernel/include/chthreads.h
+++ b/os/kernel/include/chthreads.h
@@ -99,24 +99,6 @@ typedef struct mutex mutex_t;
#endif
/**
- * @brief Generic threads single link list, it works like a stack.
- */
-typedef struct {
-
- thread_t *p_next; /**< @brief Next in the list/queue. */
-} threads_list_t;
-
-/**
- * @extends threads_list_t
- *
- * @brief Generic threads bidirectional linked list header and element.
- */
-typedef struct {
- thread_t *p_next; /**< @brief Next in the list/queue. */
- thread_t *p_prev; /**< @brief Previous in the queue. */
-} threads_queue_t;
-
-/**
* @extends threads_queue_t
*
* @brief Structure representing a thread.