-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfifo2.c
More file actions
52 lines (44 loc) · 1019 Bytes
/
fifo2.c
File metadata and controls
52 lines (44 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#define FIFO_NAME "/tmp/my_fifo"
int main(int argc, char *argv[])
{
int res;
int open_mode =0;
int i;
if (argc<2)
{
fprintf(stderr,"Usage:%s <some combination of O_RDONLY O_WRONLY O_NONBLOCK>\n",*argv);
exit(EXIT_FAILURE);
}
for(i=1;i<argc;i++)
{
if(strncmp(*++argv,"O_RDONLY",8)==0)
open_mode |= O_RDONLY;
if(strncmp(*argv,"O_WRONLY",8)==0)
open_mode |=O_WRONLY;
if(strncmp(*argv,"O_NONBLOCK",10)==0)
open_mode |= O_NONBLOCK;
}
if(access(FIFO_NAME,F_OK)==-1)
{
res=mkfifo(FIFO_NAME,0777);
if(res!=0)
{
fprintf(stderr,"Could not create fifo %s\n",FIFO_NAME);
exit(EXIT_FAILURE);
}
}
printf("Process %d opening FIFO\n",getpid(),res);
res=open(FIFO_NAME,open_mode);
printf("Process %d result %d\n",getpid(),res);
sleep(5);
if(res !=-1) (void)close(res);
printf("Process %d finished\n",getpid());
exit(EXIT_SUCCESS);
}