Mercurial > hg > xemacs-beta
comparison src/process.h @ 5178:97eb4942aec8
merge
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Mon, 29 Mar 2010 21:28:13 -0500 |
parents | b5df3737028a |
children | 308d34e9f07d |
comparison
equal
deleted
inserted
replaced
5177:b785049378e3 | 5178:97eb4942aec8 |
---|---|
25 BEGIN_C_DECLS | 25 BEGIN_C_DECLS |
26 | 26 |
27 /* struct Lisp_Process is defined in procimpl.h; only process-*.c need | 27 /* struct Lisp_Process is defined in procimpl.h; only process-*.c need |
28 to know about the guts of it. */ | 28 to know about the guts of it. */ |
29 | 29 |
30 DECLARE_LRECORD (process, Lisp_Process); | 30 DECLARE_LISP_OBJECT (process, Lisp_Process); |
31 #define XPROCESS(x) XRECORD (x, process, Lisp_Process) | 31 #define XPROCESS(x) XRECORD (x, process, Lisp_Process) |
32 #define wrap_process(p) wrap_record (p, process) | 32 #define wrap_process(p) wrap_record (p, process) |
33 #define PROCESSP(x) RECORDP (x, process) | 33 #define PROCESSP(x) RECORDP (x, process) |
34 #define CHECK_PROCESS(x) CHECK_RECORD (x, process) | 34 #define CHECK_PROCESS(x) CHECK_RECORD (x, process) |
35 #define PROCESS_LIVE_P(x) (EQ ((x)->status_symbol, Qrun)) | 35 #define PROCESS_LIVE_P(x) (EQ ((x)->status_symbol, Qrun)) |