Changeset 7f6a24ab in rtems for c/src/optman/rtems


Ignore:
Timestamp:
08/28/95 15:30:29 (28 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
5072b07
Parents:
5250ff39
Message:

Added unused priority ceiling parameter to rtems_semaphore_create.

Rearranged code to created thread handler routines to initialize,
start, restart, and "close/delete" a thread.

Made internal threads their own object class. This now uses the
thread support routines for starting and initializing a thread.

Insured deleted tasks are freed to the Inactive pool associated with the
correct Information block.

Added an RTEMS API specific data area to the thread control block.

Beginnings of removing the word "rtems" from the core.

Location:
c/src/optman/rtems
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/optman/rtems/no-sem.c

    r5250ff39 r7f6a24ab  
    3232
    3333rtems_status_code rtems_semaphore_create(
    34   rtems_name          name,
    35   unsigned32          count,
    36   rtems_attribute  attribute_set,
    37   Objects_Id         *id
     34  rtems_name            name,
     35  unsigned32            count,
     36  rtems_attribute       attribute_set,
     37  rtems_task_priority   priority_ceiling,
     38  Objects_Id           *id
    3839)
    3940{
  • c/src/optman/rtems/no-signal.c

    r5250ff39 r7f6a24ab  
    2323rtems_status_code rtems_signal_catch(
    2424  rtems_asr_entry   handler,
    25   rtems_mode mode_set
     25  rtems_mode        mode_set
    2626)
    2727{
     
    3030
    3131rtems_status_code rtems_signal_send(
    32   Objects_Id             id,
     32  rtems_id         id,
    3333  rtems_signal_set signal_set
    3434)
Note: See TracChangeset for help on using the changeset viewer.