컴파일 에러는 없는데, 실행시키면 fifo는 생성이 되는데 아무런출력이 안되고 멈춰버리네요.
[parent] Hello, world <- 이게 5번찍혀야 정상인데... 왜 멈추죠?
[code:1]#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/wait.h>
void writer(const char* msg, int count, int fd) {
for( int i = 0 ; i < count; i++) {
write(fd,msg,strlen(msg));
sleep(1);