comparison src/event-tty.c @ 272:c5d627a313b1 r21-0b34

Import from CVS: tag r21-0b34
author cvs
date Mon, 13 Aug 2007 10:28:48 +0200
parents 727739f917cb
children 064ab7fed2e0
comparison
equal deleted inserted replaced
271:c7b7086b0a39 272:c5d627a313b1
23 /* Synched up with: Not in FSF. */ 23 /* Synched up with: Not in FSF. */
24 24
25 #include <config.h> 25 #include <config.h>
26 #include "lisp.h" 26 #include "lisp.h"
27 27
28 #include "blocktype.h"
29 #include "device.h" 28 #include "device.h"
30 #include "console-tty.h" 29 #include "console-tty.h"
31 #include "events.h" 30 #include "events.h"
32 #include "frame.h" 31 #include "frame.h"
33 #include "process.h" 32 #include "process.h"
37 #include "systime.h" 36 #include "systime.h"
38 37
39 /* Mask of bits indicating the descriptors that we wait for input on */ 38 /* Mask of bits indicating the descriptors that we wait for input on */
40 extern SELECT_TYPE input_wait_mask, non_fake_input_wait_mask; 39 extern SELECT_TYPE input_wait_mask, non_fake_input_wait_mask;
41 extern SELECT_TYPE process_only_mask, tty_only_mask; 40 extern SELECT_TYPE process_only_mask, tty_only_mask;
42
43 extern Lisp_Object Qdelete_device;
44 41
45 static struct event_stream *tty_event_stream; 42 static struct event_stream *tty_event_stream;
46 43
47 44
48 /************************************************************************/ 45 /************************************************************************/