Changeset c21c5912 in rtems
- Timestamp:
- 05/14/14 09:11:05 (10 years ago)
- Branches:
- 4.11, 5, master
- Children:
- 0f41cc3
- Parents:
- 01f302b
- git-author:
- Sebastian Huber <sebastian.huber@…> (05/14/14 09:11:05)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (05/14/14 14:49:27)
- Location:
- cpukit
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libmisc/monitor/mon-prmisc.c
r01f302b rc21c5912 139 139 { "ZOMBI", STATES_ZOMBIE, 0 }, 140 140 { "MIGRA", STATES_MIGRATING, 0 }, 141 { "RESTA", STATES_RESTARTING, 0 }, 141 142 { 0, 0, 0 }, 142 143 }; -
cpukit/score/include/rtems/score/statesimpl.h
r01f302b rc21c5912 85 85 /** This macro corresponds to a task migrating to another scheduler. */ 86 86 #define STATES_MIGRATING 0x400000 87 /** This macro corresponds to a task restarting. */ 88 #define STATES_RESTARTING 0x800000 87 89 88 90 /** This macro corresponds to a task which is in an interruptible -
cpukit/score/src/threadrestart.c
r01f302b rc21c5912 225 225 the_thread->real_priority = priority; 226 226 227 _Thread_Set_ transient( the_thread);227 _Thread_Set_state( the_thread, STATES_RESTARTING ); 228 228 _Thread_queue_Extract_with_proxy( the_thread ); 229 229 _Watchdog_Remove( &the_thread->Timer );
Note: See TracChangeset
for help on using the changeset viewer.