diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-04-12 09:05:08 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-04-12 09:05:08 +0000 |
commit | 9becc21691eccf394858c2f6223d32abd9b772db (patch) | |
tree | e4d15f209f90b30e429c5dfbcb129f8ca1ca3716 /src/include/inline.h | |
parent | c1c46107187ce608b97c04f4ab459782058ed427 (diff) | |
download | ChibiOS-9becc21691eccf394858c2f6223d32abd9b772db.tar.gz ChibiOS-9becc21691eccf394858c2f6223d32abd9b772db.tar.bz2 ChibiOS-9becc21691eccf394858c2f6223d32abd9b772db.zip |
Fixed bug 2755230.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@894 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/include/inline.h')
-rw-r--r-- | src/include/inline.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/include/inline.h b/src/include/inline.h index 45396c9a1..26a4cf3da 100644 --- a/src/include/inline.h +++ b/src/include/inline.h @@ -69,19 +69,6 @@ static INLINE Thread *dequeue(Thread *tp) { tp->p_next->p_prev = tp->p_prev;
return tp;
}
-
-static INLINE void list_insert(Thread *tp, ThreadsList *tlp) {
-
- tp->p_next = tlp->p_next;
- tlp->p_next = tp;
-}
-
-static INLINE Thread *list_remove(ThreadsList *tlp) {
-
- Thread *tp = tlp->p_next;
- tlp->p_next = tp->p_next;
- return tp;
-}
#endif /* CH_OPTIMIZE_SPEED */
#endif /* _INLINE_H_ */
|