Changeset 78a38fa2 in rtems for doc


Ignore:
Timestamp:
10/08/14 22:38:12 (9 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.11, 5, master
Children:
aee5d63
Parents:
79f093b
git-author:
Joel Sherrill <joel.sherrill@…> (10/08/14 22:38:12)
git-committer:
Joel Sherrill <joel.sherrill@…> (10/09/14 15:11:58)
Message:

Eliminate use of /*PAGE and clean up formatting

Location:
doc/tools/bmenu
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • doc/tools/bmenu/Makefile.am

    r79f093b r78a38fa2  
    66noinst_PROGRAMS = bmenu2
    77
    8 bmenu2_SOURCES = address.h chain.c address.inl chain.h bmenu2.c base.h \
     8bmenu2_SOURCES = address.h chain.c chain.h bmenu2.c base.h \
    99    chain.inl system.h
  • doc/tools/bmenu/address.h

    r79f093b r78a38fa2  
    1 /*  address.h
    2  *
     1/*
    32 *  This include file contains the information required to manipulate
    43 *  physical addresses.
    5  *
     4 */
     5
     6/*
    67 *  COPYRIGHT (c) 1988-2002.
    78 *  On-Line Applications Research Corporation (OAR).
     
    2324 *  converted to an access type before being used further.
    2425 */
    25 
    2626STATIC INLINE void *_Addresses_Add_offset (
    2727  void       *base,
    2828  size_t      offset
    29 );
    30 
    31 #include "address.inl"
     29)
     30{
     31  return (base + offset);
     32}
    3233
    3334#endif
  • doc/tools/bmenu/chain.inl

    r79f093b r78a38fa2  
    1 /*  inline/chain.inl
    2  *
     1/*
    32 *  This include file contains the bodies of the routines which are
    43 *  associated with doubly linked chains and inlined.
    5  *
     4 */
     5
     6/*
    67 *  COPYRIGHT (c) 1988-2002.
    78 *  On-Line Applications Research Corporation (OAR).
     
    1213#define __INLINE_CHAIN_inl
    1314
    14 /*PAGE
    15  *
     15/*
    1616 *  _Chain_Is_null
    1717 */
    18 
    1918STATIC INLINE boolean _Chain_Is_null(
    2019  Chain_Control *the_chain
     
    2423}
    2524
    26 /*PAGE
    27  *
     25/*
    2826 *  _Chain_Is_null_node
    2927 */
    30 
    3128STATIC INLINE boolean _Chain_Is_null_node(
    3229  Chain_Node *the_node
     
    3633}
    3734
    38 /*PAGE
    39  *
     35/*
    4036 *  _Chain_Head
    4137 */
    42 
    4338STATIC INLINE Chain_Node *_Chain_Head(
    4439  Chain_Control *the_chain
     
    4843}
    4944
    50 /*PAGE
    51  *
     45/*
    5246 *  _Chain_Tail
    5347 */
    54 
    5548STATIC INLINE Chain_Node *_Chain_Tail(
    5649  Chain_Control *the_chain
     
    6053}
    6154
    62 /*PAGE
    63  *
     55/*
    6456 *  _Chain_Is_empty
    6557 */
    66 
    6758STATIC INLINE boolean _Chain_Is_empty(
    6859  Chain_Control *the_chain
     
    7263}
    7364
    74 /*PAGE
    75  *
     65/*
    7666 *  _Chain_Is_first
    7767 */
    78 
    7968STATIC INLINE boolean _Chain_Is_first(
    8069  Chain_Node *the_node
     
    8473}
    8574
    86 /*PAGE
    87  *
     75/*
    8876 *  _Chain_Is_last
    8977 */
    90 
    9178STATIC INLINE boolean _Chain_Is_last(
    9279  Chain_Node *the_node
     
    9683}
    9784
    98 /*PAGE
    99  *
     85/*
    10086 *  _Chain_Has_only_one_node
    10187 */
    102 
    10388STATIC INLINE boolean _Chain_Has_only_one_node(
    10489  Chain_Control *the_chain
     
    10893}
    10994
    110 /*PAGE
    111  *
     95/*
    11296 *  _Chain_Is_head
    11397 */
    114 
    11598STATIC INLINE boolean _Chain_Is_head(
    11699  Chain_Control *the_chain,
     
    121104}
    122105
    123 /*PAGE
    124  *
     106/*
    125107 *  _Chain_Is_tail
    126108 */
    127 
    128109STATIC INLINE boolean _Chain_Is_tail(
    129110  Chain_Control *the_chain,
     
    134115}
    135116
    136 /*PAGE
    137  *
     117/*
    138118 *  Chain_Initialize_empty
    139119 */
    140 
    141120STATIC INLINE void _Chain_Initialize_empty(
    142121  Chain_Control *the_chain
     
    148127}
    149128
    150 /*PAGE
    151  *
     129/*
    152130 *  _Chain_Extract_unprotected
    153131 */
    154 
    155132STATIC INLINE void _Chain_Extract_unprotected(
    156133  Chain_Node *the_node
     
    166143}
    167144
    168 /*PAGE
    169  *
     145/*
    170146 *  _Chain_Get_first_unprotected
    171147 */
    172 
    173148STATIC INLINE Chain_Node *_Chain_Get_first_unprotected(
    174149  Chain_Control *the_chain
     
    186161}
    187162
    188 /*PAGE
    189  *
     163/*
    190164 *  Chain_Get_unprotected
    191165 */
    192 
    193166STATIC INLINE Chain_Node *_Chain_Get_unprotected(
    194167  Chain_Control *the_chain
     
    201174}
    202175
    203 /*PAGE
    204  *
     176/*
    205177 *  _Chain_Insert_unprotected
    206178 */
    207 
    208179STATIC INLINE void _Chain_Insert_unprotected(
    209180  Chain_Node *after_node,
     
    220191}
    221192
    222 /*PAGE
    223  *
     193/*
    224194 *  _Chain_Append_unprotected
    225195 */
    226 
    227196STATIC INLINE void _Chain_Append_unprotected(
    228197  Chain_Control *the_chain,
     
    239208}
    240209
    241 /*PAGE
    242  *
     210/*
    243211 *  _Chain_Prepend_unprotected
    244212 */
    245 
    246213STATIC INLINE void _Chain_Prepend_unprotected(
    247214  Chain_Control *the_chain,
     
    253220}
    254221
    255 /*PAGE
    256  *
     222/*
    257223 *  _Chain_Prepend
    258224 */
    259 
    260225STATIC INLINE void _Chain_Prepend(
    261226  Chain_Control *the_chain,
Note: See TracChangeset for help on using the changeset viewer.