Mercurial > hg > xemacs-beta
comparison src/sysdep.h @ 432:3a7e78e1142d r21-2-24
Import from CVS: tag r21-2-24
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:29:58 +0200 |
parents | a5df635868b2 |
children | 8de8e3f6228a |
comparison
equal
deleted
inserted
replaced
431:a97165e56215 | 432:3a7e78e1142d |
---|---|
42 int get_pty_max_bytes (int fd); | 42 int get_pty_max_bytes (int fd); |
43 Bufbyte get_eof_char (int fd); | 43 Bufbyte get_eof_char (int fd); |
44 | 44 |
45 /* Wait for subprocess with process id `pid' to terminate and | 45 /* Wait for subprocess with process id `pid' to terminate and |
46 make sure it will get eliminated (not remain forever as a zombie) */ | 46 make sure it will get eliminated (not remain forever as a zombie) */ |
47 #ifdef WINDOWSNT | |
48 #include <windows.h> | |
49 void wait_for_termination (HANDLE pid); | |
50 #else | |
47 void wait_for_termination (int pid); | 51 void wait_for_termination (int pid); |
52 #endif | |
48 | 53 |
49 /* flush any pending output | 54 /* flush any pending output |
50 * (may flush input as well; it does not matter the way we use it) | 55 * (may flush input as well; it does not matter the way we use it) |
51 */ | 56 */ |
52 void flush_pending_output (int channel); | 57 void flush_pending_output (int channel); |