summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/semaphorecreatesupp.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/semaphorecreatesupp.c')
-rw-r--r--cpukit/posix/src/semaphorecreatesupp.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/cpukit/posix/src/semaphorecreatesupp.c b/cpukit/posix/src/semaphorecreatesupp.c
index d66e1942c9..4a33336230 100644
--- a/cpukit/posix/src/semaphorecreatesupp.c
+++ b/cpukit/posix/src/semaphorecreatesupp.c
@@ -42,7 +42,6 @@
int _POSIX_Semaphore_Create_support(
const char *name_arg,
size_t name_len,
- int pshared,
unsigned int value,
POSIX_Semaphore_Control **the_sem
)
@@ -50,10 +49,6 @@ int _POSIX_Semaphore_Create_support(
POSIX_Semaphore_Control *the_semaphore;
char *name;
- /* Sharing semaphores among processes is not currently supported */
- if (pshared != 0)
- rtems_set_errno_and_return_minus_one( ENOSYS );
-
/*
* Make a copy of the user's string for name just in case it was
* dynamically constructed.
@@ -73,8 +68,6 @@ int _POSIX_Semaphore_Create_support(
rtems_set_errno_and_return_minus_one( ENOSPC );
}
- the_semaphore->process_shared = pshared;
-
if ( name ) {
the_semaphore->named = true;
the_semaphore->open_count = 1;