Changeset 7fa97181 in rtems for cpukit/score
- Timestamp:
- Nov 25, 2003, 2:51:49 PM (17 years ago)
- Children:
- 86042ae
- Parents:
- f1fcb459
- Location:
- cpukit/score
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/ChangeLog
rf1fcb459 r7fa97181 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-10-02 Phil Torre <ptorre@zetron.com> 2 8 -
cpukit/score/src/threadcreateidle.c
rf1fcb459 r7fa97181 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.