Changeset 019bce7 in rtems


Ignore:
Timestamp:
05/29/96 16:05:06 (27 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
99f9dffa
Parents:
974ff40
Message:

It is now not an error to have 0 RTEMS initialization tasks since you could
create POSIX initialization threads.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/rtems/src/tasks.c

    r974ff40 r019bce7  
    175175  _RTEMS_tasks_User_initialization_tasks = user_tasks;
    176176
     177  /*
     178   *  There may not be any RTEMS initialization tasks configured.
     179   */
     180
     181#if 0
    177182  if ( user_tasks == NULL || number_of_initialization_tasks == 0 )
    178183    _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, TRUE, RTEMS_TOO_MANY );
     184#endif
    179185
    180186  _Objects_Initialize_information(
  • cpukit/rtems/src/tasks.c

    r974ff40 r019bce7  
    175175  _RTEMS_tasks_User_initialization_tasks = user_tasks;
    176176
     177  /*
     178   *  There may not be any RTEMS initialization tasks configured.
     179   */
     180
     181#if 0
    177182  if ( user_tasks == NULL || number_of_initialization_tasks == 0 )
    178183    _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, TRUE, RTEMS_TOO_MANY );
     184#endif
    179185
    180186  _Objects_Initialize_information(
Note: See TracChangeset for help on using the changeset viewer.