From 376dfb1afa6cf4fbbfcf217a5acc81ef0e35a5d9 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Fri, 4 Feb 2005 13:32:20 +0000 Subject: [PATCH] 2005-02-04 Ralf Corsepius * optman/rtems/no-sem.c: Semaphores are rtems_id not Object_id. --- c/src/ChangeLog | 4 ++++ c/src/optman/rtems/no-sem.c | 12 ++++++------ 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,3 +1,7 @@ +2005-02-04 Ralf Corsepius + + * optman/rtems/no-sem.c: Semaphores are rtems_id not Object_id. + 2005-02-04 Ralf Corsepius * libnetworking/rtems_servers/ftp.c, 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(