aboutsummaryrefslogtreecommitdiff
path: root/aufgabe2/monitor.c
diff options
context:
space:
mode:
authorThorsten Töpper <atsutane@freethoughts.de>2011-01-10 21:00:24 +0100
committerThorsten Töpper <atsutane@freethoughts.de>2011-01-10 21:00:24 +0100
commitaf86619723127c8404d3986551b3fd72934d58be (patch)
tree06024e8a4c8e86ed14a23878a57e40b69ce6b85b /aufgabe2/monitor.c
parent8f1c2cb3997af5632bf447ebc3c7c85b8b4deca6 (diff)
downloadprozesskommunikation-af86619723127c8404d3986551b3fd72934d58be.tar.gz
prozesskommunikation-af86619723127c8404d3986551b3fd72934d58be.tar.bz2
Aufgabe 2: ungenutzte Pipe-Enden schließen.
Diffstat (limited to 'aufgabe2/monitor.c')
-rw-r--r--aufgabe2/monitor.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/aufgabe2/monitor.c b/aufgabe2/monitor.c
index cb7ed29..b07cec6 100644
--- a/aufgabe2/monitor.c
+++ b/aufgabe2/monitor.c
@@ -14,6 +14,13 @@ char *message;
void monitor() {
int buffer;
+ /* ungenutzte Pipeköpfe schließen */
+ close(queue[D_CONV_TO_LOG][READ]);
+ close(queue[D_CONV_TO_LOG][WRITE]);
+ close(queue[D_CONV_TO_STAT][READ]);
+ close(queue[D_CONV_TO_STAT][WRITE]);
+ close(queue[D_STAT_TO_MON][WRITE]);
+
printf("monitor started\n");
/* Die Pipe zum lesen öffnen */