Changeset 86c847c1 in rtems
- Timestamp:
- 09/24/11 12:45:55 (12 years ago)
- Branches:
- 4.11, 5, master
- Children:
- c5ed148
- Parents:
- f40139b
- Location:
- cpukit
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
rf40139b r86c847c1 1 2011-09-24 Sebastian Huber <sebastian.huber@embedded-brains.de> 2 3 PR 1921/cpukit 4 * score/inline/rtems/score/thread.inl, 5 score/src/threadstartmultitasking.c: Allow CPU port to provide 6 optional multitasking start and stop. 7 1 8 2011-09-20 Petr Benes <benesp16@fel.cvut.cz> 2 9 -
cpukit/score/inline/rtems/score/thread.inl
rf40139b r86c847c1 112 112 RTEMS_INLINE_ROUTINE void _Thread_Stop_multitasking( void ) 113 113 { 114 #if defined(_CPU_Stop_multitasking) 115 _CPU_Stop_multitasking( &_Thread_BSP_context ); 116 #else 114 117 /* 115 118 * This may look a bit of an odd but _Context_Restart_self is just … … 121 124 */ 122 125 _Context_Restart_self( &_Thread_BSP_context ); 126 #endif 123 127 124 128 /*************************************************************** -
cpukit/score/src/threadstartmultitasking.c
rf40139b r86c847c1 87 87 #endif 88 88 89 #if defined(_CPU_Start_multitasking) 90 _CPU_Start_multitasking( &_Thread_BSP_context, &_Thread_Heir->Registers ); 91 #else 89 92 _Context_Switch( &_Thread_BSP_context, &_Thread_Heir->Registers ); 93 #endif 90 94 }
Note: See TracChangeset
for help on using the changeset viewer.