Changeset f2547306 in rtems


Ignore:
Timestamp:
08/14/03 21:01:43 (21 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
3895f96
Parents:
6185a0d3
Message:

2003-08-14 Joel Sherrill <joel@…>

  • src/mqueuenametoid.c, src/semaphorenametoid.c: Added ID to name lookup service and changed name of id/name translation status code. This propagated to multiple functions. The user API service added was rtems_object_id_to_name()
Location:
cpukit/posix
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • cpukit/posix/ChangeLog

    r6185a0d3 rf2547306  
     12003-08-14      Joel Sherrill <joel@OARcorp.com>
     2
     3        * src/mqueuenametoid.c, src/semaphorenametoid.c: Added ID to name
     4        lookup service and changed name of id/name translation status code.
     5        This propagated to multiple functions. The user API service added was
     6        rtems_object_id_to_name()
     7
    182003-08-14      Joel Sherrill <joel@OARcorp.com>
    29
  • cpukit/posix/src/mqueuenametoid.c

    r6185a0d3 rf2547306  
    4646)
    4747{
    48   Objects_Name_to_id_errors  status;
     48  Objects_Name_or_id_lookup_errors  status;
    4949
    5050   if ( !name )
     
    6060    &_POSIX_Message_queue_Information, (char *)name, 0, id );
    6161
    62   if ( status == OBJECTS_SUCCESSFUL )
     62  if ( status == OBJECTS_NAME_OR_ID_LOOKUP_SUCCESSFUL )
    6363    return 0;
    6464
  • cpukit/posix/src/semaphorenametoid.c

    r6185a0d3 rf2547306  
    3434)
    3535{
    36   Objects_Name_to_id_errors  status;
     36  Objects_Name_or_id_lookup_errors  status;
    3737
    3838   if ( !name )
     
    4545    &_POSIX_Semaphore_Information, (char *)name, 0, (Objects_Id*)id );
    4646
    47   if ( status == OBJECTS_SUCCESSFUL )
     47  if ( status == OBJECTS_NAME_OR_ID_LOOKUP_SUCCESSFUL )
    4848    return 0;
    4949
Note: See TracChangeset for help on using the changeset viewer.