Changeset 39e50b3f in rtems


Ignore:
Timestamp:
11/23/03 19:11:46 (20 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
6521b63
Parents:
926e856a
Message:

2003-11-23 Ralf Corsepius <corsepiu@…>

  • system.h: Remove USE_INLINES.
  • chain.c: Remove USE_INLINES.
Location:
doc/tools/bmenu
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • doc/tools/bmenu/ChangeLog

    r926e856a r39e50b3f  
     12003-11-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * system.h: Remove USE_INLINES.
     4        * chain.c: Remove USE_INLINES.
     5
    162002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    27
  • doc/tools/bmenu/chain.c

    r926e856a r39e50b3f  
    5757/*PAGE
    5858 *
    59  *  _Chain_Get_first_unprotected
    60  */
    61 
    62 #ifndef USE_INLINES
    63 STATIC INLINE Chain_Node *_Chain_Get_first_unprotected(
    64   Chain_Control *the_chain
    65 )
    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 /*PAGE
    80  *
    8159 *  _Chain_Get
    8260 *
  • doc/tools/bmenu/system.h

    r926e856a r39e50b3f  
    1414typedef unsigned char  unsigned8;
    1515
    16 #define USE_INLINES
    1716#define STATIC static
    1817#define INLINE inline
Note: See TracChangeset for help on using the changeset viewer.