Changeset c9ae846 in rtems


Ignore:
Timestamp:
11/18/99 19:41:34 (24 years ago)
Author:
Jennifer Averett <Jennifer.Averett@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
17879f4
Parents:
f811c8e
Message:

Added a routine to remove a semaphore name from its namespace.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/posix/inline/rtems/posix/semaphore.inl

    rf811c8e rc9ae846  
    4242/*PAGE
    4343 *
     44 *  _POSIX_Semaphore_Namespace_remove
     45 */
     46 
     47RTEMS_INLINE_ROUTINE void _POSIX_Semaphore_Namespace_remove (
     48  POSIX_Semaphore_Control *the_semaphore
     49)
     50{
     51  _Objects_Namespace_remove(
     52    &_POSIX_Semaphore_Information, &the_semaphore->Object );
     53}
     54 
     55
     56
     57/*PAGE
     58 *
    4459 *  _POSIX_Semaphore_Get
    4560 */
  • cpukit/posix/inline/rtems/posix/semaphore.inl

    rf811c8e rc9ae846  
    4242/*PAGE
    4343 *
     44 *  _POSIX_Semaphore_Namespace_remove
     45 */
     46 
     47RTEMS_INLINE_ROUTINE void _POSIX_Semaphore_Namespace_remove (
     48  POSIX_Semaphore_Control *the_semaphore
     49)
     50{
     51  _Objects_Namespace_remove(
     52    &_POSIX_Semaphore_Information, &the_semaphore->Object );
     53}
     54 
     55
     56
     57/*PAGE
     58 *
    4459 *  _POSIX_Semaphore_Get
    4560 */
Note: See TracChangeset for help on using the changeset viewer.