Changeset e7264f07 in rtems


Ignore:
Timestamp:
10/21/99 16:44:24 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
d013d05
Parents:
9583f6e
Message:

Added rtems_semaphore_flush directive.

Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/rtems/include/rtems/rtems/sem.h

    r9583f6e re7264f07  
    163163
    164164/*
     165 *  rtems_semaphore_flush
     166 *
     167 *  This directive allows a thread to flush the threads
     168 *  pending on the semaphore.
     169 */
     170
     171rtems_status_code rtems_semaphore_flush(
     172  Objects_Id      id
     173);
     174
     175/*
    165176 *  _Semaphore_Seize
    166177 *
  • c/src/exec/rtems/src/Makefile.in

    r9583f6e re7264f07  
    4242
    4343SEMAPHORE_C_PIECES = sem semcreate semdelete semident semobtain semrelease \
    44     semtranslatereturncode
     44    semflush semtranslatereturncode
    4545
    4646EVENT_C_PIECES = event eventreceive eventseize eventsend eventsurrender \
  • cpukit/rtems/include/rtems/rtems/sem.h

    r9583f6e re7264f07  
    163163
    164164/*
     165 *  rtems_semaphore_flush
     166 *
     167 *  This directive allows a thread to flush the threads
     168 *  pending on the semaphore.
     169 */
     170
     171rtems_status_code rtems_semaphore_flush(
     172  Objects_Id      id
     173);
     174
     175/*
    165176 *  _Semaphore_Seize
    166177 *
Note: See TracChangeset for help on using the changeset viewer.