Changeset 02a200d in rtems
- Timestamp:
- 04/09/02 19:19:03 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 6568b90
- Parents:
- cf10399
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/ChangeLog
rcf10399 r02a200d 1 2002-04-08 Chris Johns <ccj@acm.org> 2 3 * Per PR141 and PR174, make task switch extension its own list and 4 fix all odd problems introduced by providing macro version. 5 * inline/rtems/score/userext.inl: Fix. 6 1 7 2001-04-08 Joel Sherrill <joel@OARcorp.com> 2 8 -
c/src/exec/score/inline/rtems/score/userext.inl
rcf10399 r02a200d 105 105 */ 106 106 107 if ( extension_table->thread_switch != NULL ) { 107 if ( the_extension->Callouts.thread_switch != NULL ) { 108 the_extension->Switch.thread_switch = the_extension->Callouts.thread_switch; 108 109 _Chain_Append( 109 110 &_User_extensions_Switches_list, &the_extension->Switch.Node ); -
c/src/exec/score/macros/rtems/score/userext.inl
rcf10399 r02a200d 82 82 \ 83 83 if ( (_the_extension)->Callouts.thread_switch != NULL ) { \ 84 (_the_extension)->Switch.thread_switch = \ 85 (_the_extension)->Callouts.thread_switch; \ 84 86 _Chain_Append( \ 85 87 &_User_extensions_Switches_list, &(_the_extension)->Switch.Node ); \ -
cpukit/score/ChangeLog
rcf10399 r02a200d 1 2002-04-08 Chris Johns <ccj@acm.org> 2 3 * Per PR141 and PR174, make task switch extension its own list and 4 fix all odd problems introduced by providing macro version. 5 * inline/rtems/score/userext.inl: Fix. 6 1 7 2001-04-08 Joel Sherrill <joel@OARcorp.com> 2 8 -
cpukit/score/inline/rtems/score/userext.inl
rcf10399 r02a200d 105 105 */ 106 106 107 if ( extension_table->thread_switch != NULL ) { 107 if ( the_extension->Callouts.thread_switch != NULL ) { 108 the_extension->Switch.thread_switch = the_extension->Callouts.thread_switch; 108 109 _Chain_Append( 109 110 &_User_extensions_Switches_list, &the_extension->Switch.Node ); -
cpukit/score/macros/rtems/score/userext.inl
rcf10399 r02a200d 82 82 \ 83 83 if ( (_the_extension)->Callouts.thread_switch != NULL ) { \ 84 (_the_extension)->Switch.thread_switch = \ 85 (_the_extension)->Callouts.thread_switch; \ 84 86 _Chain_Append( \ 85 87 &_User_extensions_Switches_list, &(_the_extension)->Switch.Node ); \
Note: See TracChangeset
for help on using the changeset viewer.