comparison src/process.h @ 404:2f8bb876ab1d r21-2-32

Import from CVS: tag r21-2-32
author cvs
date Mon, 13 Aug 2007 11:16:07 +0200
parents 74fd4e045ea6
children de805c49cfc1
comparison
equal deleted inserted replaced
403:9f011ab08d48 404:2f8bb876ab1d
35 #define init_xemacs_process() 0 35 #define init_xemacs_process() 0
36 void wait_without_blocking (void); 36 void wait_without_blocking (void);
37 37
38 #else /* not NO_SUBPROCESSES */ 38 #else /* not NO_SUBPROCESSES */
39 39
40 /* Only process.c needs to know about the guts of this */ 40 /* struct Lisp_Process is defined in procimpl.h; only process-*.c need
41 to know about the guts of it. */
41 42
42 DECLARE_LRECORD (process, Lisp_Process); 43 DECLARE_LRECORD (process, Lisp_Process);
43 #define XPROCESS(x) XRECORD (x, process, Lisp_Process) 44 #define XPROCESS(x) XRECORD (x, process, Lisp_Process)
44 #define XSETPROCESS(x, p) XSETRECORD (x, p, process) 45 #define XSETPROCESS(x, p) XSETRECORD (x, p, process)
45 #define PROCESSP(x) RECORDP (x, process) 46 #define PROCESSP(x) RECORDP (x, process)