summaryrefslogtreecommitdiffstats
path: root/c/src/optman/rtems/no-sem.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 08:29:14 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 08:29:14 +0000
commitc83b5678c9b72f42bb34f7aa2af35ca19c34bd77 (patch)
treec3622e8e17c6e865f704d32765e173c06cafc60a /c/src/optman/rtems/no-sem.c
parent2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-c83b5678c9b72f42bb34f7aa2af35ca19c34bd77.tar.bz2
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
* optman/rtems/no-dpmem.c, optman/rtems/no-mp.c, optman/rtems/no-msg.c, optman/rtems/no-part.c, optman/rtems/no-region.c, optman/rtems/no-rtmon.c, optman/rtems/no-sem.c, optman/rtems/no-timer.c, optman/sapi/no-ext.c, optman/sapi/no-io.c: Convert to using c99 fixed size types.
Diffstat (limited to 'c/src/optman/rtems/no-sem.c')
-rw-r--r--c/src/optman/rtems/no-sem.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/c/src/optman/rtems/no-sem.c b/c/src/optman/rtems/no-sem.c
index d90b116919..949391dc20 100644
--- a/c/src/optman/rtems/no-sem.c
+++ b/c/src/optman/rtems/no-sem.c
@@ -25,14 +25,14 @@
#include <rtems/score/interr.h>
void _Semaphore_Manager_initialization(
- unsigned32 maximum_semaphores
+ uint32_t maximum_semaphores
)
{
}
rtems_status_code rtems_semaphore_create(
rtems_name name,
- unsigned32 count,
+ uint32_t count,
rtems_attribute attribute_set,
rtems_task_priority priority_ceiling,
Objects_Id *id
@@ -48,7 +48,7 @@ rtems_status_code rtems_semaphore_create(
rtems_status_code rtems_semaphore_ident(
rtems_name name,
- unsigned32 node,
+ uint32_t node,
Objects_Id *id
)
{
@@ -74,7 +74,7 @@ rtems_status_code rtems_semaphore_delete(
rtems_status_code rtems_semaphore_obtain(
Objects_Id id,
- unsigned32 option_set,
+ uint32_t option_set,
rtems_interval timeout
)
{