summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/mqueuenametoid.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/mqueuenametoid.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 'cpukit/posix/src/mqueuenametoid.c')
-rw-r--r--cpukit/posix/src/mqueuenametoid.c4
1 files changed, 2 insertions, 2 deletions
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;