mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-26 06:08:20 +00:00
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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
);
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user