Mercurial > hg > xemacs-beta
comparison src/procimpl.h @ 380:8626e4521993 r21-2-5
Import from CVS: tag r21-2-5
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:07:10 +0200 |
parents | e11d67e05968 |
children | 74fd4e045ea6 |
comparison
equal
deleted
inserted
replaced
379:76b7d63099ad | 380:8626e4521993 |
---|---|
27 | 27 |
28 struct Lisp_Process; | 28 struct Lisp_Process; |
29 | 29 |
30 /* | 30 /* |
31 * Structure which keeps methods of the process implementation. | 31 * Structure which keeps methods of the process implementation. |
32 * There is only one object of this class exists in a perticular | 32 * There is only one object of this class exists in a particular |
33 * XEmacs implementation. | 33 * XEmacs implementation. |
34 */ | 34 */ |
35 | 35 |
36 /* #### Comment me... */ | 36 /* #### Comment me... */ |
37 | 37 |
161 extern Lisp_Object Qrun, Qstop, Qopen, Qclosed; | 161 extern Lisp_Object Qrun, Qstop, Qopen, Qclosed; |
162 extern Lisp_Object Qtcpip; | 162 extern Lisp_Object Qtcpip; |
163 extern Lisp_Object Vprocess_connection_type; | 163 extern Lisp_Object Vprocess_connection_type; |
164 extern Lisp_Object Vprocess_list; | 164 extern Lisp_Object Vprocess_list; |
165 | 165 |
166 extern c_hashtable usid_to_process; | 166 extern struct hash_table *usid_to_process; |
167 | 167 |
168 extern volatile int process_tick; | 168 extern volatile int process_tick; |
169 | 169 |
170 extern int windowed_process_io; | 170 extern int windowed_process_io; |
171 | 171 |