comparison src/sysdep.h @ 357:4711e16a8e49 r21-1-8

Import from CVS: tag r21-1-8
author cvs
date Mon, 13 Aug 2007 10:57:04 +0200
parents e11d67e05968
children cc15677e0335
comparison
equal deleted inserted replaced
356:e85f639a32f3 357:4711e16a8e49
46 int get_pty_max_bytes (int fd); 46 int get_pty_max_bytes (int fd);
47 Bufbyte get_eof_char (int fd); 47 Bufbyte get_eof_char (int fd);
48 48
49 /* Wait for subprocess with process id `pid' to terminate and 49 /* Wait for subprocess with process id `pid' to terminate and
50 make sure it will get eliminated (not remain forever as a zombie) */ 50 make sure it will get eliminated (not remain forever as a zombie) */
51 #ifdef WINDOWSNT
52 #include <windows.h>
53 void wait_for_termination (HANDLE pid);
54 #else
51 void wait_for_termination (int pid); 55 void wait_for_termination (int pid);
56 #endif
52 57
53 /* flush any pending output 58 /* flush any pending output
54 * (may flush input as well; it does not matter the way we use it) 59 * (may flush input as well; it does not matter the way we use it)
55 */ 60 */
56 void flush_pending_output (int channel); 61 void flush_pending_output (int channel);