Created
August 4, 2020 05:55
-
-
Save ob/b83d004634b9f2bc445a09de750a55bf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* gcc test.c -lutil */ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <pty.h> | |
static int | |
do_fork(void) | |
{ | |
int fd = -1; | |
pid_t pid; | |
if ((pid = forkpty(&fd, NULL, NULL, NULL)) < 0) | |
perror("forkpty"); | |
else if (!pid) | |
{ | |
printf ("0123456789\n"); | |
fflush(stdout); | |
/* #### Uncommenting this makes it work! */ | |
// sleep(20); | |
exit (0); | |
} | |
return fd; | |
} | |
int | |
main (int argc, char **argv) | |
{ | |
char s[1024]; | |
int n; | |
int fd = do_fork(); | |
/* On 10.4, this prints the whole 10 character line, 1 char per second. | |
On 10.5, it prints 1 character and stops. | |
*/ | |
do { | |
n = read (fd, s, 1); | |
if (n > 0) fprintf (stderr, "%c", *s); | |
sleep (1); | |
} while (n > 0); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment