Changeset ba77fe60 in rtems
- Timestamp:
- 11/25/03 14:52:17 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- de691e68
- Parents:
- 444d048
- Location:
- cpukit/score
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/ChangeLog
r444d048 rba77fe60 1 2003-11-25 Joel Sherrill <joel@OARcorp.com> 2 3 PR 526/rtems 4 * src/threadcreateidle.c: Idle task name should be a string and 5 PR484 broke this. 6 1 7 2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/score/src/threadcreateidle.c
r444d048 rba77fe60 32 32 */ 33 33 34 /* 'I','D','L','E' */ 35 const Objects_Name _Thread_Idle_name = (Objects_Name) 0x49444C45; 34 const char *_Thread_Idle_name = "IDLE"; 36 35 37 36 void _Thread_Create_idle( void ) … … 76 75 NULL, /* no budget algorithm callout */ 77 76 0, /* all interrupts enabled */ 78 _Thread_Idle_name77 (Objects_Name) _Thread_Idle_name 79 78 ); 80 79
Note: See TracChangeset
for help on using the changeset viewer.