summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/rtems/posix/semaphore.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-09-08 15:25:47 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-09-12 11:50:39 +0200
commit18b32d7635efbd1345846f786a51281437bcfd54 (patch)
tree816bed3574fb63a0bc5fc3acf83a3e8a1a003753 /cpukit/posix/include/rtems/posix/semaphore.h
parentserdbg: Fix warning (diff)
downloadrtems-18b32d7635efbd1345846f786a51281437bcfd54.tar.bz2
posix: Ignore pshared for semaphores
Since we have only one process, sharing between processes is trivial. Close #3124.
Diffstat (limited to 'cpukit/posix/include/rtems/posix/semaphore.h')
-rw-r--r--cpukit/posix/include/rtems/posix/semaphore.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/cpukit/posix/include/rtems/posix/semaphore.h b/cpukit/posix/include/rtems/posix/semaphore.h
index 45de4a93b9..6598397052 100644
--- a/cpukit/posix/include/rtems/posix/semaphore.h
+++ b/cpukit/posix/include/rtems/posix/semaphore.h
@@ -43,7 +43,6 @@ extern "C" {
typedef struct {
Objects_Control Object;
CORE_semaphore_Control Semaphore;
- int process_shared;
bool named;
bool linked;
uint32_t open_count;