Mercurial > hg > xemacs-beta
diff src/process.h @ 440:8de8e3f6228a r21-2-28
Import from CVS: tag r21-2-28
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:33:38 +0200 |
parents | 3ecd8885ac67 |
children | abe6d1db359e |
line wrap: on
line diff
--- a/src/process.h Mon Aug 13 11:32:27 2007 +0200 +++ b/src/process.h Mon Aug 13 11:33:38 2007 +0200 @@ -18,8 +18,8 @@ the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#ifndef _XEMACS_PROCESS_H_ -#define _XEMACS_PROCESS_H_ +#ifndef INCLUDED_process_h_ +#define INCLUDED_process_h_ #if defined (NO_SUBPROCESSES) #undef XPROCESS @@ -38,14 +38,19 @@ #else /* not NO_SUBPROCESSES */ /* Only process.c needs to know about the guts of this */ -struct Lisp_Process; -DECLARE_LRECORD (process, struct Lisp_Process); -#define XPROCESS(x) XRECORD (x, process, struct Lisp_Process) +DECLARE_LRECORD (process, Lisp_Process); +#define XPROCESS(x) XRECORD (x, process, Lisp_Process) #define XSETPROCESS(x, p) XSETRECORD (x, p, process) #define PROCESSP(x) RECORDP (x, process) #define CHECK_PROCESS(x) CHECK_RECORD (x, process) -#define PROCESS_LIVE_P(x) (!NILP (XPROCESS(x)->pipe_instream)) +#define PROCESS_LIVE_P(x) (!NILP ((x)->pipe_instream)) + +#define CHECK_LIVE_PROCESS(x) do { \ + CHECK_PROCESS (x); \ + if (! PROCESS_LIVE_P (XPROCESS (x))) \ + dead_wrong_type_argument (Qprocess_live_p, (x)); \ +} while (0) #ifdef emacs @@ -56,7 +61,7 @@ Lisp_Object buffer, Lisp_Object infd, Lisp_Object outfd); -int connected_via_filedesc_p (struct Lisp_Process *p); +int connected_via_filedesc_p (Lisp_Process *p); void kill_buffer_processes (Lisp_Object buffer); void close_process_descs (void); @@ -79,12 +84,12 @@ Lisp_Object status_symbol, int exit_code, int core_dumped); -void get_process_streams (struct Lisp_Process *p, +void get_process_streams (Lisp_Process *p, Lisp_Object *instr, Lisp_Object *outstr); -int get_process_selected_p (struct Lisp_Process *p); -void set_process_selected_p (struct Lisp_Process *p, int selected_p); +int get_process_selected_p (Lisp_Process *p); +void set_process_selected_p (Lisp_Process *p, int selected_p); -struct Lisp_Process *get_process_from_usid (USID usid); +Lisp_Process *get_process_from_usid (USID usid); #ifdef HAVE_SOCKETS int network_connection_p (Lisp_Object process); @@ -142,4 +147,4 @@ #define PTY_TTY_NAME_SPRINTF strcpy (pty_name, ptsname (fd)); #endif -#endif /* _XEMACS_PROCESS_H_ */ +#endif /* INCLUDED_process_h_ */