Changes between Version 40 and Version 41 of Developer/SMP


Ignore:
Timestamp:
03/03/14 15:47:35 (10 years ago)
Author:
Sh
Comment:

/* RTEMS API Changes */ Add new semaphore attribute

Legend:

Unmodified
Added
Removed
Modified
  • Developer/SMP

    v40 v41  
    11521152==  RTEMS API Changes  ==
    11531153
     1154
     1155A new semaphore attribute enables MrsP.
     1156
     1157 /**
     1158  * @brief Semaphore attribute to select the multiprocessor resource sharing
     1159  * protocol MrsP.
     1160  *
     1161  * This attribute is mutually exclusive with RTEMS_PRIORITY_CEILING and
     1162  * RTEMS_INHERIT_PRIORITY.
     1163  */
     1164 #define RTEMS_MULTIPROCESSOR_RESOURCE_SHARING 0x00000100
    11541165
    11551166For MrsP we need the ability to specify the priority ceilings per scheduler
     
    15771588; START : Starts a thread.  The thread must be dormant to get started.
    15781589; RESTART : Restarts a thread.  The thread must not be dormant to get restarted.
    1579 ; SUSPEND : Suspends a thread.
    1580 ; RESUME : Resumes a thread.
    1581 ; DELETE : Deletes a thread.
    1582 ; SET_PROTECTION : Sets the new protection state and returns the previous.  This action is new.
    1583 
    1584 The following thread life-cycle states are proposed.  These states are
    1585 orthogonal to the blocking states, e.g. DORMANT, SUSPENDED etc.
     1590; SUSPEND