summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/semaphorenametoid.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2003-08-14 21:01:43 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2003-08-14 21:01:43 +0000
commitf2547306a9bd7aa41572904d68a96b358e6a8a9e (patch)
tree154035344fd03b0639aabf4e9b8bcfbb79d60341 /cpukit/posix/src/semaphorenametoid.c
parent2003-08-14 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-f2547306a9bd7aa41572904d68a96b358e6a8a9e.tar.bz2
2003-08-14 Joel Sherrill <joel@OARcorp.com>
* 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()
Diffstat (limited to '')
-rw-r--r--cpukit/posix/src/semaphorenametoid.c4
1 files changed, 2 insertions, 2 deletions
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;