428
|
1 /* Definitions for asynchronous process control in XEmacs.
|
|
2 Copyright (C) 1985, 1992, 1993, 1994 Free Software Foundation, Inc.
|
814
|
3 Copyright (C) 2002 Ben Wing.
|
428
|
4
|
|
5 This file is part of XEmacs.
|
|
6
|
|
7 XEmacs is free software; you can redistribute it and/or modify it
|
|
8 under the terms of the GNU General Public License as published by the
|
|
9 Free Software Foundation; either version 2, or (at your option) any
|
|
10 later version.
|
|
11
|
|
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
15 for more details.
|
|
16
|
|
17 You should have received a copy of the GNU General Public License
|
|
18 along with XEmacs; see the file COPYING. If not, write to
|
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
20 Boston, MA 02111-1307, USA. */
|
|
21
|
440
|
22 #ifndef INCLUDED_process_h_
|
|
23 #define INCLUDED_process_h_
|
428
|
24
|
|
25 #if defined (NO_SUBPROCESSES)
|
|
26 #undef XPROCESS
|
|
27 #undef CHECK_PROCESS
|
|
28 #define PROCESSP(x) 0
|
|
29 #define PROCESS_LIVE_P(x) 0
|
|
30 #define Fprocess_status(x) Qnil
|
|
31 #define Fget_process(x) Qnil
|
|
32 #define Fget_buffer_process(x) Qnil
|
|
33 #define kill_buffer_processes(x) 0
|
|
34 #define close_process_descs() 0
|
|
35 #define init_xemacs_process() 0
|
|
36
|
|
37 #else /* not NO_SUBPROCESSES */
|
|
38
|
1743
|
39 BEGIN_C_DECLS
|
1650
|
40
|
442
|
41 /* struct Lisp_Process is defined in procimpl.h; only process-*.c need
|
|
42 to know about the guts of it. */
|
428
|
43
|
440
|
44 DECLARE_LRECORD (process, Lisp_Process);
|
|
45 #define XPROCESS(x) XRECORD (x, process, Lisp_Process)
|
617
|
46 #define wrap_process(p) wrap_record (p, process)
|
428
|
47 #define PROCESSP(x) RECORDP (x, process)
|
|
48 #define CHECK_PROCESS(x) CHECK_RECORD (x, process)
|
863
|
49 #define PROCESS_LIVE_P(x) (EQ ((x)->status_symbol, Qrun))
|
|
50 #define PROCESS_READABLE_P(x) (!NILP ((x)->pipe_instream))
|
440
|
51
|
|
52 #define CHECK_LIVE_PROCESS(x) do { \
|
|
53 CHECK_PROCESS (x); \
|
|
54 if (! PROCESS_LIVE_P (XPROCESS (x))) \
|
|
55 dead_wrong_type_argument (Qprocess_live_p, (x)); \
|
|
56 } while (0)
|
428
|
57
|
863
|
58 #define CHECK_READABLE_PROCESS(x) do { \
|
|
59 CHECK_PROCESS (x); \
|
|
60 if (! PROCESS_READABLE_P (XPROCESS (x))) \
|
|
61 dead_wrong_type_argument (Qprocess_readable_p, (x)); \
|
|
62 } while (0)
|
|
63
|
872
|
64 EXFUN (Fdelete_process, 1);
|
|
65 EXFUN (Fget_buffer_process, 1);
|
|
66 EXFUN (Fget_process, 1);
|
|
67 EXFUN (Fprocess_status, 1);
|
428
|
68 EXFUN (Fprocess_kill_without_query, 2);
|
|
69 EXFUN (Fprocess_id, 1);
|
|
70
|
1632
|
71 MODULE_API
|
872
|
72 DECLARE_DOESNT_RETURN (report_process_error (const char *, Lisp_Object));
|
|
73 DECLARE_DOESNT_RETURN (report_network_error (const char *, Lisp_Object));
|
|
74 extern Lisp_Object Vlisp_EXEC_SUFFIXES;
|
|
75
|
1632
|
76 MODULE_API Ibyte *egetenv (const CIbyte *var);
|
|
77 MODULE_API void eputenv (const CIbyte *var, const CIbyte *value);
|
872
|
78 extern int env_initted;
|
|
79
|
771
|
80 extern Lisp_Object Qprocess_live_p;
|
|
81
|
428
|
82 Lisp_Object connect_to_file_descriptor (Lisp_Object name,
|
|
83 Lisp_Object buffer,
|
|
84 Lisp_Object infd,
|
|
85 Lisp_Object outfd);
|
440
|
86 int connected_via_filedesc_p (Lisp_Process *p);
|
428
|
87 void kill_buffer_processes (Lisp_Object buffer);
|
|
88 void close_process_descs (void);
|
853
|
89 void set_process_filter (Lisp_Object proc, Lisp_Object filter,
|
|
90 int filter_does_read,
|
|
91 int set_stderr);
|
428
|
92 void update_process_status (Lisp_Object p,
|
|
93 Lisp_Object status_symbol,
|
|
94 int exit_code, int core_dumped);
|
440
|
95 void get_process_streams (Lisp_Process *p,
|
853
|
96 Lisp_Object *instr, Lisp_Object *outstr,
|
|
97 Lisp_Object *errstr);
|
|
98 int get_process_selected_p (Lisp_Process *p, int do_err);
|
|
99 void set_process_selected_p (Lisp_Process *p, int in_selected,
|
|
100 int err_selected);
|
440
|
101 Lisp_Process *get_process_from_usid (USID usid);
|
428
|
102
|
|
103 #ifdef HAVE_SOCKETS
|
|
104 int network_connection_p (Lisp_Object process);
|
|
105 #else
|
|
106 #define network_connection_p(x) 0
|
|
107 #endif
|
|
108
|
|
109 extern Lisp_Object Qclosed, Qmulticast, Qopen, Qrun, Qstop, Qtcp, Qudp;
|
|
110 extern Lisp_Object Vprocess_connection_type, Vprocess_list;
|
|
111
|
|
112 /* Report all recent events of a change in process status
|
|
113 (either run the sentinel or output a message).
|
|
114 This is done while Emacs is waiting for keyboard input. */
|
|
115 void status_notify (void);
|
|
116 void kick_status_notify (void);
|
|
117 void deactivate_process (Lisp_Object proc);
|
853
|
118 Charcount read_process_output (Lisp_Object proc, int read_stderr);
|
|
119 int process_has_separate_stderr (Lisp_Object proc);
|
442
|
120 const char *signal_name (int signum);
|
428
|
121 Lisp_Object canonicalize_host_name (Lisp_Object host);
|
|
122
|
1743
|
123 END_C_DECLS
|
1650
|
124
|
428
|
125 #endif /* not NO_SUBPROCESSES */
|
|
126
|
|
127 /* The name of the file open to get a null file, or a data sink.
|
|
128 MS-DOS, and OS/2 redefine this. */
|
|
129 #ifndef NULL_DEVICE
|
|
130 #define NULL_DEVICE "/dev/null"
|
|
131 #endif
|
|
132
|
|
133 /* A string listing the possible suffixes used for executable files,
|
|
134 separated by colons. MS-DOS, and OS/2 redefine this. */
|
|
135 #ifndef EXEC_SUFFIXES
|
|
136 #define EXEC_SUFFIXES ""
|
|
137 #endif
|
|
138
|
440
|
139 #endif /* INCLUDED_process_h_ */
|