Mercurial > hg > xemacs-beta
comparison src/process.h @ 5140:e5380fdaf8f1
merge
| author | Ben Wing <ben@xemacs.org> |
|---|---|
| date | Sat, 13 Mar 2010 05:38:34 -0600 |
| parents | b5df3737028a |
| children | 308d34e9f07d |
comparison
equal
deleted
inserted
replaced
| 5139:a48ef26d87ee | 5140:e5380fdaf8f1 |
|---|---|
| 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)) |
