summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-07-05 18:14:30 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-07-05 18:14:30 +0000
commit485c9741ab214a64777d45d482f0a86fe2c5ebdd (patch)
tree45d117fd48a0e4f54f3014a5fe1a225602bfdba9 /cpukit
parent2002-07-05 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-485c9741ab214a64777d45d482f0a86fe2c5ebdd.tar.bz2
2002-07-05 Joel Sherrill <joel@OARcorp.com>
* src/dpmemident.c, src/msgqident.c, src/partident.c, src/ratemonident.c, src/regionident.c, src/semident.c, src/timerident.c: Corrected use of name parameter to be consistent with fixes implemented to string name processing which were committed with the POSIX Message Queue update.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/rtems/ChangeLog8
-rw-r--r--cpukit/rtems/src/dpmemident.c2
-rw-r--r--cpukit/rtems/src/msgqident.c2
-rw-r--r--cpukit/rtems/src/partident.c2
-rw-r--r--cpukit/rtems/src/ratemonident.c2
-rw-r--r--cpukit/rtems/src/regionident.c2
-rw-r--r--cpukit/rtems/src/semident.c2
-rw-r--r--cpukit/rtems/src/timerident.c2
8 files changed, 15 insertions, 7 deletions
diff --git a/cpukit/rtems/ChangeLog b/cpukit/rtems/ChangeLog
index 5073d3d127..d2a80d6604 100644
--- a/cpukit/rtems/ChangeLog
+++ b/cpukit/rtems/ChangeLog
@@ -1,3 +1,11 @@
+2002-07-05 Joel Sherrill <joel@OARcorp.com>
+
+ * src/dpmemident.c, src/msgqident.c, src/partident.c,
+ src/ratemonident.c, src/regionident.c, src/semident.c,
+ src/timerident.c: Corrected use of name parameter to
+ be consistent with fixes implemented to string name processing
+ which were committed with the POSIX Message Queue update.
+
2002-07-01 Joel Sherrill <joel@OARcorp.com>
* Mega patch merge to change the format of the object IDs to
diff --git a/cpukit/rtems/src/dpmemident.c b/cpukit/rtems/src/dpmemident.c
index cdfd42abd1..e68bf23d6c 100644
--- a/cpukit/rtems/src/dpmemident.c
+++ b/cpukit/rtems/src/dpmemident.c
@@ -46,7 +46,7 @@ rtems_status_code rtems_port_ident(
status = _Objects_Name_to_id(
&_Dual_ported_memory_Information,
- &name,
+ name,
OBJECTS_SEARCH_ALL_NODES,
id
);
diff --git a/cpukit/rtems/src/msgqident.c b/cpukit/rtems/src/msgqident.c
index eb04c28c55..253d90b616 100644
--- a/cpukit/rtems/src/msgqident.c
+++ b/cpukit/rtems/src/msgqident.c
@@ -58,7 +58,7 @@ rtems_status_code rtems_message_queue_ident(
status = _Objects_Name_to_id(
&_Message_queue_Information,
- &name,
+ name,
node,
id
);
diff --git a/cpukit/rtems/src/partident.c b/cpukit/rtems/src/partident.c
index 2f7029cd63..ce65b76ae9 100644
--- a/cpukit/rtems/src/partident.c
+++ b/cpukit/rtems/src/partident.c
@@ -47,7 +47,7 @@ rtems_status_code rtems_partition_ident(
{
Objects_Name_to_id_errors status;
- status = _Objects_Name_to_id( &_Partition_Information, &name, node, id );
+ status = _Objects_Name_to_id( &_Partition_Information, name, node, id );
return _Status_Object_name_errors_to_status[ status ];
}
diff --git a/cpukit/rtems/src/ratemonident.c b/cpukit/rtems/src/ratemonident.c
index 8c18975009..33d4e3fd3d 100644
--- a/cpukit/rtems/src/ratemonident.c
+++ b/cpukit/rtems/src/ratemonident.c
@@ -46,7 +46,7 @@ rtems_status_code rtems_rate_monotonic_ident(
status = _Objects_Name_to_id(
&_Rate_monotonic_Information,
- &name,
+ name,
OBJECTS_SEARCH_LOCAL_NODE,
id
);
diff --git a/cpukit/rtems/src/regionident.c b/cpukit/rtems/src/regionident.c
index 5a43f25a19..b1e9ec77b0 100644
--- a/cpukit/rtems/src/regionident.c
+++ b/cpukit/rtems/src/regionident.c
@@ -48,7 +48,7 @@ rtems_status_code rtems_region_ident(
status = _Objects_Name_to_id(
&_Region_Information,
- &name,
+ name,
OBJECTS_SEARCH_LOCAL_NODE,
id
);
diff --git a/cpukit/rtems/src/semident.c b/cpukit/rtems/src/semident.c
index 638cda505e..9cb642ad77 100644
--- a/cpukit/rtems/src/semident.c
+++ b/cpukit/rtems/src/semident.c
@@ -71,7 +71,7 @@ rtems_status_code rtems_semaphore_ident(
{
Objects_Name_to_id_errors status;
- status = _Objects_Name_to_id( &_Semaphore_Information, &name, node, id );
+ status = _Objects_Name_to_id( &_Semaphore_Information, name, node, id );
return _Status_Object_name_errors_to_status[ status ];
}
diff --git a/cpukit/rtems/src/timerident.c b/cpukit/rtems/src/timerident.c
index f8cb36bdc6..f8e1815026 100644
--- a/cpukit/rtems/src/timerident.c
+++ b/cpukit/rtems/src/timerident.c
@@ -47,7 +47,7 @@ rtems_status_code rtems_timer_ident(
status = _Objects_Name_to_id(
&_Timer_Information,
- &name,
+ name,
OBJECTS_SEARCH_LOCAL_NODE,
id
);