xv6/user1.c

23 lines
278 B
C
Raw Normal View History

#include "user.h"
2006-06-27 14:35:53 +00:00
char buf[32];
2006-06-26 15:11:19 +00:00
int
2006-07-17 01:25:22 +00:00
main(void)
2006-06-22 20:47:23 +00:00
{
2006-06-27 14:35:53 +00:00
int pid, fds[2], n;
pipe(fds);
pid = fork();
2006-06-27 14:35:53 +00:00
if(pid > 0){
write(fds[1], "xyz", 4);
puts("w");
} else {
2006-06-27 14:35:53 +00:00
n = read(fds[0], buf, sizeof(buf));
puts("r: ");
puts(buf);
puts("\n");
}
for(;;);
2006-06-22 20:47:23 +00:00
}