Changeset 8af72be in rtems


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

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

PR 525/rtems

  • include/rtems/system.h: Use RTEMS_INLINES instead of USE_INLINES.
  • include/rtems/score/chain.h: Ditto.
  • include/rtems/score/thread.h: Ditto.
  • src/chain.c: Ditto.
  • src/coremutexseize.c: Ditto.
  • src/threadget.c: Ditto.
Location:
cpukit/score
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • cpukit/score/ChangeLog

    r6521b63 r8af72be  
     12003-11-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        PR 525/rtems
     4        * include/rtems/system.h: Use RTEMS_INLINES instead of USE_INLINES.
     5        * include/rtems/score/chain.h: Ditto.
     6        * include/rtems/score/thread.h: Ditto.
     7        * src/chain.c: Ditto.
     8        * src/coremutexseize.c: Ditto.
     9        * src/threadget.c: Ditto.
     10
    1112003-11-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    212
  • cpukit/score/include/rtems/score/chain.h

    r6521b63 r8af72be  
    8787 */
    8888 
    89 #ifndef USE_INLINES
     89#ifndef RTEMS_INLINES
    9090Chain_Node *_Chain_Get_first_unprotected(
    9191  Chain_Control *the_chain
  • cpukit/score/include/rtems/score/thread.h

    r6521b63 r8af72be  
    742742 */
    743743 
    744 #ifndef USE_INLINES
     744#ifndef RTEMS_INLINES
    745745Thread_Control *_Thread_Get (
    746746  Objects_Id           id,
  • cpukit/score/include/rtems/system.h

    r6521b63 r8af72be  
    9292 */
    9393
    94 #ifdef USE_INLINES
     94#ifdef RTEMS_INLINES
    9595# ifdef __GNUC__
    9696#  define RTEMS_INLINE_ROUTINE static __inline__
  • cpukit/score/src/chain.c

    r6521b63 r8af72be  
    6868 */
    6969
    70 #ifndef USE_INLINES
     70#ifndef RTEMS_INLINES
    7171Chain_Node *_Chain_Get_first_unprotected(
    7272  Chain_Control *the_chain
     
    8383  return return_node;
    8484}
    85 #endif   /* USE_INLINES */
     85#endif   /* RTEMS_INLINES */
    8686
    8787/*PAGE
  • cpukit/score/src/coremutexseize.c

    r6521b63 r8af72be  
    7676}
    7777
    78 #if !defined(USE_INLINES)
     78#if !defined(RTEMS_INLINES)
    7979int _CORE_mutex_Seize_interrupt_trylock(
    8080  CORE_mutex_Control  *the_mutex,
  • cpukit/score/src/threadget.c

    r6521b63 r8af72be  
    3737 */
    3838
    39 #ifndef USE_INLINES
     39#ifndef RTEMS_INLINES
    4040
    4141Thread_Control *_Thread_Get (
Note: See TracChangeset for help on using the changeset viewer.