Changeset ba77fe60 in rtems


Ignore:
Timestamp:
11/25/03 14:52:17 (19 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
de691e68
Parents:
444d048
Message:

2003-11-25 Joel Sherrill <joel@…>

PR 526/rtems

  • src/threadcreateidle.c: Idle task name should be a string and PR484 broke this.
Location:
cpukit/score
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpukit/score/ChangeLog

    r444d048 rba77fe60  
     12003-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
    172003-11-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • cpukit/score/src/threadcreateidle.c

    r444d048 rba77fe60  
    3232 */
    3333
    34 /* 'I','D','L','E' */
    35 const Objects_Name _Thread_Idle_name = (Objects_Name) 0x49444C45;
     34const char *_Thread_Idle_name = "IDLE";
    3635
    3736void _Thread_Create_idle( void )
     
    7675    NULL,        /* no budget algorithm callout */
    7776    0,           /* all interrupts enabled */
    78     _Thread_Idle_name
     77    (Objects_Name) _Thread_Idle_name
    7978  );
    8079 
Note: See TracChangeset for help on using the changeset viewer.