summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c/src/ChangeLog4
-rw-r--r--c/src/optman/rtems/no-sem.c12
2 files changed, 10 insertions, 6 deletions
diff --git a/c/src/ChangeLog b/c/src/ChangeLog
index ef1baa5779..a9ca58dff8 100644
--- a/c/src/ChangeLog
+++ b/c/src/ChangeLog
@@ -1,5 +1,9 @@
2005-02-04 Ralf Corsepius <ralf.corsepius@rtems.org>
+ * optman/rtems/no-sem.c: Semaphores are rtems_id not Object_id.
+
+2005-02-04 Ralf Corsepius <ralf.corsepius@rtems.org>
+
* libnetworking/rtems_servers/ftp.c,
libnetworking/rtems_servers/ftp.h,
libnetworking/rtems_servers/Makefile.am:
diff --git a/c/src/optman/rtems/no-sem.c b/c/src/optman/rtems/no-sem.c
index 949391dc20..8c22badeae 100644
--- a/c/src/optman/rtems/no-sem.c
+++ b/c/src/optman/rtems/no-sem.c
@@ -35,7 +35,7 @@ rtems_status_code rtems_semaphore_create(
uint32_t count,
rtems_attribute attribute_set,
rtems_task_priority priority_ceiling,
- Objects_Id *id
+ rtems_id *id
)
{
_Internal_error_Occurred(
@@ -49,7 +49,7 @@ rtems_status_code rtems_semaphore_create(
rtems_status_code rtems_semaphore_ident(
rtems_name name,
uint32_t node,
- Objects_Id *id
+ rtems_id *id
)
{
_Internal_error_Occurred(
@@ -61,7 +61,7 @@ rtems_status_code rtems_semaphore_ident(
}
rtems_status_code rtems_semaphore_delete(
- Objects_Id id
+ rtems_id id
)
{
_Internal_error_Occurred(
@@ -73,8 +73,8 @@ rtems_status_code rtems_semaphore_delete(
}
rtems_status_code rtems_semaphore_obtain(
- Objects_Id id,
- uint32_t option_set,
+ rtems_id id,
+ uint32_t option_set,
rtems_interval timeout
)
{
@@ -87,7 +87,7 @@ rtems_status_code rtems_semaphore_obtain(
}
rtems_status_code rtems_semaphore_release(
- Objects_Id id
+ rtems_id id
)
{
_Internal_error_Occurred(