summaryrefslogtreecommitdiffstats
path: root/c/src/optman
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-02-04 13:32:20 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-02-04 13:32:20 +0000
commit376dfb1afa6cf4fbbfcf217a5acc81ef0e35a5d9 (patch)
tree7c0a8b564f6e27a061a3078c1b684ab4cfab4966 /c/src/optman
parent2005-02-04 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-376dfb1afa6cf4fbbfcf217a5acc81ef0e35a5d9.tar.bz2
2005-02-04 Ralf Corsepius <ralf.corsepius@rtems.org>
* optman/rtems/no-sem.c: Semaphores are rtems_id not Object_id.
Diffstat (limited to 'c/src/optman')
-rw-r--r--c/src/optman/rtems/no-sem.c12
1 files changed, 6 insertions, 6 deletions
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(