Changeset 8af72be in rtems
- Timestamp:
- 11/23/03 21:45:00 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- dcfba35
- Parents:
- 6521b63
- Location:
- cpukit/score
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/ChangeLog
r6521b63 r8af72be 1 2003-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 1 11 2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 12 -
cpukit/score/include/rtems/score/chain.h
r6521b63 r8af72be 87 87 */ 88 88 89 #ifndef USE_INLINES89 #ifndef RTEMS_INLINES 90 90 Chain_Node *_Chain_Get_first_unprotected( 91 91 Chain_Control *the_chain -
cpukit/score/include/rtems/score/thread.h
r6521b63 r8af72be 742 742 */ 743 743 744 #ifndef USE_INLINES744 #ifndef RTEMS_INLINES 745 745 Thread_Control *_Thread_Get ( 746 746 Objects_Id id, -
cpukit/score/include/rtems/system.h
r6521b63 r8af72be 92 92 */ 93 93 94 #ifdef USE_INLINES94 #ifdef RTEMS_INLINES 95 95 # ifdef __GNUC__ 96 96 # define RTEMS_INLINE_ROUTINE static __inline__ -
cpukit/score/src/chain.c
r6521b63 r8af72be 68 68 */ 69 69 70 #ifndef USE_INLINES70 #ifndef RTEMS_INLINES 71 71 Chain_Node *_Chain_Get_first_unprotected( 72 72 Chain_Control *the_chain … … 83 83 return return_node; 84 84 } 85 #endif /* USE_INLINES */85 #endif /* RTEMS_INLINES */ 86 86 87 87 /*PAGE -
cpukit/score/src/coremutexseize.c
r6521b63 r8af72be 76 76 } 77 77 78 #if !defined( USE_INLINES)78 #if !defined(RTEMS_INLINES) 79 79 int _CORE_mutex_Seize_interrupt_trylock( 80 80 CORE_mutex_Control *the_mutex, -
cpukit/score/src/threadget.c
r6521b63 r8af72be 37 37 */ 38 38 39 #ifndef USE_INLINES39 #ifndef RTEMS_INLINES 40 40 41 41 Thread_Control *_Thread_Get (
Note: See TracChangeset
for help on using the changeset viewer.