From f2547306a9bd7aa41572904d68a96b358e6a8a9e Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 14 Aug 2003 21:01:43 +0000 Subject: 2003-08-14 Joel Sherrill * 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() --- cpukit/posix/ChangeLog | 7 +++++++ cpukit/posix/src/mqueuenametoid.c | 4 ++-- cpukit/posix/src/semaphorenametoid.c | 4 ++-- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/cpukit/posix/ChangeLog b/cpukit/posix/ChangeLog index 062dc3e254..d1f906cbf7 100644 --- a/cpukit/posix/ChangeLog +++ b/cpukit/posix/ChangeLog @@ -1,3 +1,10 @@ +2003-08-14 Joel Sherrill + + * 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() + 2003-08-14 Joel Sherrill PR 92/rtems diff --git a/cpukit/posix/src/mqueuenametoid.c b/cpukit/posix/src/mqueuenametoid.c index 914b84351f..b11c53bc51 100644 --- a/cpukit/posix/src/mqueuenametoid.c +++ b/cpukit/posix/src/mqueuenametoid.c @@ -45,7 +45,7 @@ int _POSIX_Message_queue_Name_to_id( Objects_Id *id ) { - Objects_Name_to_id_errors status; + Objects_Name_or_id_lookup_errors status; if ( !name ) return EINVAL; @@ -59,7 +59,7 @@ int _POSIX_Message_queue_Name_to_id( status = _Objects_Name_to_id( &_POSIX_Message_queue_Information, (char *)name, 0, id ); - if ( status == OBJECTS_SUCCESSFUL ) + if ( status == OBJECTS_NAME_OR_ID_LOOKUP_SUCCESSFUL ) return 0; return ENOENT; diff --git a/cpukit/posix/src/semaphorenametoid.c b/cpukit/posix/src/semaphorenametoid.c index e5d15cd7ed..303c00d979 100644 --- a/cpukit/posix/src/semaphorenametoid.c +++ b/cpukit/posix/src/semaphorenametoid.c @@ -33,7 +33,7 @@ int _POSIX_Semaphore_Name_to_id( sem_t *id ) { - Objects_Name_to_id_errors status; + Objects_Name_or_id_lookup_errors status; if ( !name ) return EINVAL; @@ -44,7 +44,7 @@ int _POSIX_Semaphore_Name_to_id( status = _Objects_Name_to_id( &_POSIX_Semaphore_Information, (char *)name, 0, (Objects_Id*)id ); - if ( status == OBJECTS_SUCCESSFUL ) + if ( status == OBJECTS_NAME_OR_ID_LOOKUP_SUCCESSFUL ) return 0; return ENOENT; -- cgit v1.2.3