summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/rtems/posix/semaphore.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/include/rtems/posix/semaphore.h')
-rw-r--r--cpukit/posix/include/rtems/posix/semaphore.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/posix/include/rtems/posix/semaphore.h b/cpukit/posix/include/rtems/posix/semaphore.h
index 6cbed61394..e4330fc641 100644
--- a/cpukit/posix/include/rtems/posix/semaphore.h
+++ b/cpukit/posix/include/rtems/posix/semaphore.h
@@ -34,7 +34,7 @@ typedef struct {
int process_shared;
boolean named;
boolean linked;
- unsigned32 open_count;
+ uint32_t open_count;
CORE_semaphore_Control Semaphore;
} POSIX_Semaphore_Control;
@@ -54,7 +54,7 @@ POSIX_EXTERN Objects_Information _POSIX_Semaphore_Information;
*/
void _POSIX_Semaphore_Manager_initialization(
- unsigned32 maximum_semaphorees
+ uint32_t maximum_semaphorees
);
/*