Changeset 39e50b3f in rtems
- Timestamp:
- 11/23/03 19:11:46 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 6521b63
- Parents:
- 926e856a
- Location:
- doc/tools/bmenu
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/tools/bmenu/ChangeLog
r926e856a r39e50b3f 1 2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * system.h: Remove USE_INLINES. 4 * chain.c: Remove USE_INLINES. 5 1 6 2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 7 -
doc/tools/bmenu/chain.c
r926e856a r39e50b3f 57 57 /*PAGE 58 58 * 59 * _Chain_Get_first_unprotected60 */61 62 #ifndef USE_INLINES63 STATIC INLINE Chain_Node *_Chain_Get_first_unprotected(64 Chain_Control *the_chain65 )66 {67 Chain_Node *return_node;68 Chain_Node *new_first;69 70 return_node = the_chain->first;71 new_first = return_node->next;72 the_chain->first = new_first;73 new_first->previous = _Chain_Head( the_chain );74 75 return return_node;76 }77 #endif /* USE_INLINES */78 79 /*PAGE80 *81 59 * _Chain_Get 82 60 * -
doc/tools/bmenu/system.h
r926e856a r39e50b3f 14 14 typedef unsigned char unsigned8; 15 15 16 #define USE_INLINES17 16 #define STATIC static 18 17 #define INLINE inline
Note: See TracChangeset
for help on using the changeset viewer.