diff options
Diffstat (limited to 'aufgabe2/conv.c')
| -rw-r--r-- | aufgabe2/conv.c | 33 |
1 files changed, 31 insertions, 2 deletions
diff --git a/aufgabe2/conv.c b/aufgabe2/conv.c index efa8200..a28f120 100644 --- a/aufgabe2/conv.c +++ b/aufgabe2/conv.c @@ -1,18 +1,47 @@ /* * vim:ts=4:sw=4:expandtab - * + * */ #include <stdlib.h> #include <stdio.h> #include <unistd.h> +#include <limits.h> + +#include "queue.h" + +FILE *pipe_log; +FILE *pipe_stat; void conv() { - printf("conv started\n"); + int random_number = 0; + + /* Die beiden Pipes zum schreiben öffnen */ + if (((pipe_log = fdopen(queue[D_CONV_TO_LOG][WRITE], "w")) == NULL) || + ((pipe_stat = fdopen(queue[D_CONV_TO_STAT][WRITE], "w")) == NULL)) { + perror("conv.c fdopen()"); + exit(EXIT_FAILURE); + } + for (;;) { + /* Generierung der Zufallszahl, um Fehler im + * statistic Prozess zu vermeiden mit geringerem + * Wertebereich [0, SHRT_MAX] (quasi als short). + */ + random_number = rand()%SHRT_MAX; + + /* Nachricht sowohl in die Queue zum log Prozess als auch + * in die Queue zum statistic Prozess schreiben. + */ + fprintf(pipe_log, "%x\n", random_number); + fprintf(pipe_stat, "%x\n", random_number); } } void conv_cleanup() { printf("conv cleanup\n"); + fclose(pipe_log); + fclose(pipe_stat); + close(queue[D_CONV_TO_LOG][WRITE]); + close(queue[D_CONV_TO_STAT][WRITE]); _exit(EXIT_SUCCESS); } |
