Shouldn't exit out of dgl while watching ttyrecs.
git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@551 db0b04b0-f4d1-0310-9a6d-de3e77497b0e
This commit is contained in:
parent
80baf8a856
commit
91f5cc7b07
11
ttyplay.c
11
ttyplay.c
|
@ -144,6 +144,7 @@ ttyplay_keyboard_action(int c)
|
||||||
struct termios t;
|
struct termios t;
|
||||||
switch (c)
|
switch (c)
|
||||||
{
|
{
|
||||||
|
case ERR:
|
||||||
case 'q':
|
case 'q':
|
||||||
return READ_QUIT;
|
return READ_QUIT;
|
||||||
case 'r':
|
case 'r':
|
||||||
|
@ -213,14 +214,14 @@ ttyread (FILE * fp, Header * h, char **buf, int pread)
|
||||||
{
|
{
|
||||||
fprintf (stderr, "h->len too big (%ld) limit %ld\n",
|
fprintf (stderr, "h->len too big (%ld) limit %ld\n",
|
||||||
(long)h->len, (long)BUFSIZ);
|
(long)h->len, (long)BUFSIZ);
|
||||||
exit (-21);
|
return READ_QUIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
*buf = malloc (h->len + 1);
|
*buf = malloc (h->len + 1);
|
||||||
if (*buf == NULL)
|
if (*buf == NULL)
|
||||||
{
|
{
|
||||||
perror ("malloc");
|
perror ("malloc");
|
||||||
exit (-22);
|
return READ_QUIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fread (*buf, 1, h->len, fp) != h->len)
|
if (fread (*buf, 1, h->len, fp) != h->len)
|
||||||
|
@ -253,7 +254,7 @@ ttypread (FILE * fp, Header * h, char **buf, int pread)
|
||||||
if (kq == -1)
|
if (kq == -1)
|
||||||
{
|
{
|
||||||
printf ("kqueue() failed.\n");
|
printf ("kqueue() failed.\n");
|
||||||
exit (1);
|
return READ_QUIT;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -299,7 +300,7 @@ ttypread (FILE * fp, Header * h, char **buf, int pread)
|
||||||
*/
|
*/
|
||||||
endwin ();
|
endwin ();
|
||||||
printf ("Exiting due to 20 minutes of inactivity.\n");
|
printf ("Exiting due to 20 minutes of inactivity.\n");
|
||||||
exit (-23);
|
return READ_QUIT;
|
||||||
}
|
}
|
||||||
FD_ZERO (&readfs);
|
FD_ZERO (&readfs);
|
||||||
FD_SET (STDIN_FILENO, &readfs);
|
FD_SET (STDIN_FILENO, &readfs);
|
||||||
|
@ -314,7 +315,7 @@ ttypread (FILE * fp, Header * h, char **buf, int pread)
|
||||||
return READ_RESTART;
|
return READ_RESTART;
|
||||||
} else {
|
} else {
|
||||||
printf("select()/kevent() failed.\n");
|
printf("select()/kevent() failed.\n");
|
||||||
exit (1);
|
return READ_QUIT;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (doread)
|
if (doread)
|
||||||
|
|
Loading…
Reference in New Issue