mariadb/mit-pthreads/tests/test_fcntl.c
bk@work.mysql.com f4c589ff6c Import changeset
2000-07-31 21:29:14 +02:00

32 lines
532 B
C

#include <stdio.h>
#include <fcntl.h>
main()
{
int flags, child;
if ((flags = fcntl(0, F_GETFL)) < 0) {
perror("fcntl 1st GETFL");
}
printf ("flags = %x\n", flags);
switch(child = fork()) {
case -1:
printf("error during fork\n");
break;
case 0: /* child */
execlp("test_create", "test_create", NULL);
break;
default: /* parent */
wait(NULL);
break;
}
while(1){
if ((flags = fcntl(0, F_GETFL)) < 0) {
perror("fcntl parent GETFL");
}
printf ("parent %d flags = %x\n", child, flags);
sleep(1);
}
}