-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtry.cpp
68 lines (63 loc) · 1.35 KB
/
try.cpp
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <bits/stdc++.h>
using namespace std;
/* Write some random text to the pipe. */
void
write_to_pipe (int file)
{
FILE *stream;
stream = fdopen (file, "w");
char buf[1000000];
setvbuf ( stream , buf , _IOFBF , 100000);
int x = 0;
while(x++ < 10000){
fprintf (stream, "%d\n", rand()%200000000);
// fflush(stream);
// usleep(200000);
}
std::cout<<"Parent complete\n";
fclose (stream);
}
int
main (void)
{
pid_t pid;
int mypipe[2];
/* Create the pipe. */
if (pipe (mypipe))
{
fprintf (stderr, "Pipe failed.\n");
return EXIT_FAILURE;
}
/* Create the child process. */
pid = fork ();
if (pid == (pid_t) 0)
{
puts("child started\n");
/* This is the child process.
Close other end first. */
close (mypipe[1]);
char str[16];
sprintf(str, "%d", mypipe[0]);
execl( "lookup", str, "1", (char*)0 );
std::cout<<"error in execl\n";
return EXIT_SUCCESS;
}
else if (pid < (pid_t) 0)
{
/* The fork failed. */
fprintf (stderr, "Fork failed.\n");
return EXIT_FAILURE;
}
else
{
/* This is the parent process.
Close other end first. */
close (mypipe[0]);
write_to_pipe (mypipe[1]);
return EXIT_SUCCESS;
}
}