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
|
1650
|
39 #ifdef __cplusplus
|
|
40 extern "C" {
|
|
41 #endif
|
|
42
|
442
|
43 /* struct Lisp_Process is defined in procimpl.h; only process-*.c need
|
|
44 to know about the guts of it. */
|
428
|
45
|
440
|
46 DECLARE_LRECORD (process, Lisp_Process);
|
|
47 #define XPROCESS(x) XRECORD (x, process, Lisp_Process)
|
617
|
48 #define wrap_process(p) wrap_record (p, process)
|
428
|
49 #define PROCESSP(x) RECORDP (x, process)
|
|
50 #define CHECK_PROCESS(x) CHECK_RECORD (x, process)
|
863
|
51 #define PROCESS_LIVE_P(x) (EQ ((x)->status_symbol, Qrun))
|
|
52 #define PROCESS_READABLE_P(x) (!NILP ((x)->pipe_instream))
|
440
|
53
|
|
54 #define CHECK_LIVE_PROCESS(x) do { \
|
|
55 CHECK_PROCESS (x); \
|
|
56 if (! PROCESS_LIVE_P (XPROCESS (x))) \
|
|
57 dead_wrong_type_argument (Qprocess_live_p, (x)); \
|
|
58 } while (0)
|
428
|
59
|
863
|
60 #define CHECK_READABLE_PROCESS(x) do { \
|
|
61 CHECK_PROCESS (x); \
|
|
62 if (! PROCESS_READABLE_P (XPROCESS (x))) \
|
|
63 dead_wrong_type_argument (Qprocess_readable_p, (x)); \
|
|
64 } while (0)
|
|
65
|
872
|
66 EXFUN (Fdelete_process, 1);
|
|
67 EXFUN (Fget_buffer_process, 1);
|
|
68 EXFUN (Fget_process, 1);
|
|
69 EXFUN (Fprocess_status, 1);
|
428
|
70 EXFUN (Fprocess_kill_without_query, 2);
|
|
71 EXFUN (Fprocess_id, 1);
|
|
72
|
1632
|
73 MODULE_API
|
872
|
74 DECLARE_DOESNT_RETURN (report_process_error (const char *, Lisp_Object));
|
|
75 DECLARE_DOESNT_RETURN (report_network_error (const char *, Lisp_Object));
|
|
76 extern Lisp_Object Vlisp_EXEC_SUFFIXES;
|
|
77
|
1632
|
78 MODULE_API Ibyte *egetenv (const CIbyte *var);
|
|
79 MODULE_API void eputenv (const CIbyte *var, const CIbyte *value);
|
872
|
80 extern int env_initted;
|
|
81
|
771
|
82 extern Lisp_Object Qprocess_live_p;
|
|
83
|
428
|
84 Lisp_Object connect_to_file_descriptor (Lisp_Object name,
|
|
85 Lisp_Object buffer,
|
|
86 Lisp_Object infd,
|
|
87 Lisp_Object outfd);
|
440
|
88 int connected_via_filedesc_p (Lisp_Process *p);
|
428
|
89 void kill_buffer_processes (Lisp_Object buffer);
|
|
90 void close_process_descs (void);
|
853
|
91 void set_process_filter (Lisp_Object proc, Lisp_Object filter,
|
|
92 int filter_does_read,
|
|
93 int set_stderr);
|
428
|
94 void update_process_status (Lisp_Object p,
|
|
95 Lisp_Object status_symbol,
|
|
96 int exit_code, int core_dumped);
|
440
|
97 void get_process_streams (Lisp_Process *p,
|
853
|
98 Lisp_Object *instr, Lisp_Object *outstr,
|
|
99 Lisp_Object *errstr);
|
|
100 int get_process_selected_p (Lisp_Process *p, int do_err);
|
|
101 void set_process_selected_p (Lisp_Process *p, int in_selected,
|
|
102 int err_selected);
|
440
|
103 Lisp_Process *get_process_from_usid (USID usid);
|
428
|
104
|
|
105 #ifdef HAVE_SOCKETS
|
|
106 int network_connection_p (Lisp_Object process);
|
|
107 #else
|
|
108 #define network_connection_p(x) 0
|
|
109 #endif
|
|
110
|
|
111 extern Lisp_Object Qclosed, Qmulticast, Qopen, Qrun, Qstop, Qtcp, Qudp;
|
|
112 extern Lisp_Object Vprocess_connection_type, Vprocess_list;
|
|
113
|
|
114 /* Report all recent events of a change in process status
|
|
115 (either run the sentinel or output a message).
|
|
116 This is done while Emacs is waiting for keyboard input. */
|
|
117 void status_notify (void);
|
|
118 void kick_status_notify (void);
|
|
119 void deactivate_process (Lisp_Object proc);
|
853
|
120 Charcount read_process_output (Lisp_Object proc, int read_stderr);
|
|
121 int process_has_separate_stderr (Lisp_Object proc);
|
442
|
122 const char *signal_name (int signum);
|
428
|
123 Lisp_Object canonicalize_host_name (Lisp_Object host);
|
|
124
|
1650
|
125 #ifdef __cplusplus
|
|
126 }
|
|
127 #endif
|
|
128
|
428
|
129 #endif /* not NO_SUBPROCESSES */
|
|
130
|
|
131 /* The name of the file open to get a null file, or a data sink.
|
|
132 MS-DOS, and OS/2 redefine this. */
|
|
133 #ifndef NULL_DEVICE
|
|
134 #define NULL_DEVICE "/dev/null"
|
|
135 #endif
|
|
136
|
|
137 /* A string listing the possible suffixes used for executable files,
|
|
138 separated by colons. MS-DOS, and OS/2 redefine this. */
|
|
139 #ifndef EXEC_SUFFIXES
|
|
140 #define EXEC_SUFFIXES ""
|
|
141 #endif
|
|
142
|
440
|
143 #endif /* INCLUDED_process_h_ */
|