aboutsummaryrefslogtreecommitdiff
path: root/src/ui_ipc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui_ipc.c')
-rw-r--r--src/ui_ipc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ui_ipc.c b/src/ui_ipc.c
index cf137e7..669c1d6 100644
--- a/src/ui_ipc.c
+++ b/src/ui_ipc.c
@@ -48,7 +48,6 @@ ui_ipc_init(int is_master)
JMP_IF( sems[SEM_UI] = sem_open(SEM_GUI, sp_oflags, crt_flags, 0), SEM_FAILED, error );
JMP_IF( sems[SEM_IN] = sem_open(SEM_INP, sp_oflags, crt_flags, 0), SEM_FAILED, error );
JMP_IF( sems[SEM_BS] = sem_open(SEM_BSY, sp_oflags, crt_flags, 0), SEM_FAILED, error );
- JMP_IF( sems[SEM_RD] = sem_open(SEM_RDY, sp_oflags, crt_flags, 0), SEM_FAILED, error );
return 0;
error:
return errno;
@@ -69,7 +68,6 @@ ui_ipc_free(int is_master)
sem_unlink(SEM_BSY);
sem_unlink(SEM_GUI);
sem_unlink(SEM_INP);
- sem_unlink(SEM_RDY);
mq_unlink(MSQ_PWD);
mq_unlink(MSQ_INF);
}