X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=demo%2Fboxshell.c;fp=demo%2Fboxshell.c;h=505f6b9c0307ec804799555361523938a54f75ae;hb=c3f780f9456ff7adde5b8041596e200a9b41c588;hp=76af9146ec6359744a719c820eea09f7e17f0f1a;hpb=2ce3ba8535147bd21ce80c140afb13083dd5d289;p=apps%2Fmadtty.git diff --git a/demo/boxshell.c b/demo/boxshell.c index 76af914..505f6b9 100644 --- a/demo/boxshell.c +++ b/demo/boxshell.c @@ -56,7 +56,7 @@ static int is_expired(struct timeval now, struct timeval expiry) int main(void) { madtty_t *rt; - int dirty = 0; + int dirty = 0, pty; struct timeval next; signal(SIGCHLD, handler); @@ -72,7 +72,7 @@ int main(void) const char *path = getenv("SHELL") ?: "/bin/sh"; const char *args[] = { path, "--login", NULL}; - madtty_forkpty(rt, path, args); + madtty_forkpty(rt, path, args, &pty); } /* keep reading keypresses from the user and passing them to the terminal; @@ -85,10 +85,10 @@ int main(void) FD_ZERO(&rfds); FD_SET(0, &rfds); - FD_SET(rt->pty, &rfds); + FD_SET(pty, &rfds); - if (select(rt->pty + 1, &rfds, NULL, NULL, &tv) > 0) { - if (FD_ISSET(rt->pty, &rfds)) { + if (select(pty + 1, &rfds, NULL, NULL, &tv) > 0) { + if (FD_ISSET(pty, &rfds)) { madtty_process(rt); dirty = 1; }