2003-11-25 Joel Sherrill <joel@OARcorp.com>

PR 526/rtems
	* src/threadcreateidle.c: Idle task name should be a string and
	PR484 broke this.
This commit is contained in:
Joel Sherrill
2003-11-25 14:51:49 +00:00
parent f1fcb45930
commit 7fa9718147
2 changed files with 8 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
2003-11-25 Joel Sherrill <joel@OARcorp.com>
PR 526/rtems
* src/threadcreateidle.c: Idle task name should be a string and
PR484 broke this.
2003-10-02 Phil Torre <ptorre@zetron.com>
PR 504/rtems

View File

@@ -31,8 +31,7 @@
* _Thread_Create_idle
*/
/* 'I','D','L','E' */
const Objects_Name _Thread_Idle_name = (Objects_Name) 0x49444C45;
const char *_Thread_Idle_name = "IDLE";
void _Thread_Create_idle( void )
{
@@ -75,7 +74,7 @@ void _Thread_Create_idle( void )
THREAD_CPU_BUDGET_ALGORITHM_NONE,
NULL, /* no budget algorithm callout */
0, /* all interrupts enabled */
_Thread_Idle_name
(Objects_Name) _Thread_Idle_name
);
/*