annotate src/process.h @ 410:de805c49cfc1 r21-2-35

Import from CVS: tag r21-2-35
author cvs
date Mon, 13 Aug 2007 11:19:21 +0200
parents 2f8bb876ab1d
children 697ef44129c6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Definitions for asynchronous process control in XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1985, 1992, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
21 #ifndef INCLUDED_process_h_
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
22 #define INCLUDED_process_h_
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 #if defined (NO_SUBPROCESSES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 #undef XPROCESS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 #undef CHECK_PROCESS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #undef XSETPROCESS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #define PROCESSP(x) 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #define PROCESS_LIVE_P(x) 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #define Fprocess_status(x) Qnil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #define Fget_process(x) Qnil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #define Fget_buffer_process(x) Qnil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #define kill_buffer_processes(x) 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #define close_process_descs() 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #define init_xemacs_process() 0
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
36 void wait_without_blocking (void);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #else /* not NO_SUBPROCESSES */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 398
diff changeset
40 /* struct Lisp_Process is defined in procimpl.h; only process-*.c need
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 398
diff changeset
41 to know about the guts of it. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
43 DECLARE_LRECORD (process, Lisp_Process);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
44 #define XPROCESS(x) XRECORD (x, process, Lisp_Process)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 #define XSETPROCESS(x, p) XSETRECORD (x, p, process)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 #define PROCESSP(x) RECORDP (x, process)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 #define CHECK_PROCESS(x) CHECK_RECORD (x, process)
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
48 #define PROCESS_LIVE_P(x) (!NILP ((x)->pipe_instream))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
49
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
50 #define CHECK_LIVE_PROCESS(x) do { \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
51 CHECK_PROCESS (x); \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
52 if (! PROCESS_LIVE_P (XPROCESS (x))) \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
53 dead_wrong_type_argument (Qprocess_live_p, (x)); \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
54 } while (0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
58 EXFUN (Fprocess_kill_without_query, 2);
274
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
59 EXFUN (Fprocess_id, 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 Lisp_Object connect_to_file_descriptor (Lisp_Object name,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 Lisp_Object buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 Lisp_Object infd,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 Lisp_Object outfd);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
65 int connected_via_filedesc_p (Lisp_Process *p);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 void kill_buffer_processes (Lisp_Object buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 void close_process_descs (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 void set_process_filter (Lisp_Object proc,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 Lisp_Object filter, int filter_does_read);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 /* True iff we are about to fork off a synchronous process or if we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 are waiting for it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 extern volatile int synch_process_alive;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 /* Nonzero => this is a string explaining death of synchronous subprocess. */
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
77 extern const char *synch_process_death;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 /* If synch_process_death is zero,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 this is exit code of synchronous subprocess. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 extern int synch_process_retcode;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 void update_process_status (Lisp_Object p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 Lisp_Object status_symbol,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 int exit_code, int core_dumped);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
88 void get_process_streams (Lisp_Process *p,
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
89 Lisp_Object *instr, Lisp_Object *outstr);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
90 int get_process_selected_p (Lisp_Process *p);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
91 void set_process_selected_p (Lisp_Process *p, int selected_p);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
93 Lisp_Process *get_process_from_usid (USID usid);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 #ifdef HAVE_SOCKETS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 int network_connection_p (Lisp_Object process);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 #define network_connection_p(x) 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
101 extern Lisp_Object Qclosed, Qmulticast, Qopen, Qrun, Qstop, Qtcp, Qudp;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
102 extern Lisp_Object Vprocess_connection_type, Vprocess_list;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 /* Report all recent events of a change in process status
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 (either run the sentinel or output a message).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 This is done while Emacs is waiting for keyboard input. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 void status_notify (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 void kick_status_notify (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 void deactivate_process (Lisp_Object proc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
410
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 404
diff changeset
112 #ifdef WIN32_NATIVE
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
113 int
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
114 #else
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
115 void
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
116 #endif
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
117 child_setup (int in, int out, int err,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
118 char **new_argv, const char *current_dir);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 Charcount read_process_output (Lisp_Object proc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
122 const char *signal_name (int signum);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 Lisp_Object canonicalize_host_name (Lisp_Object host);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 #endif /* not NO_SUBPROCESSES */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 /* The name of the file open to get a null file, or a data sink.
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 185
diff changeset
129 MS-DOS, and OS/2 redefine this. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 #ifndef NULL_DEVICE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 #define NULL_DEVICE "/dev/null"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 /* A string listing the possible suffixes used for executable files,
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 185
diff changeset
135 separated by colons. MS-DOS, and OS/2 redefine this. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 #ifndef EXEC_SUFFIXES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 #define EXEC_SUFFIXES ""
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 #endif /* emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
142 #ifdef HAVE_GETPT
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
143 #define PTY_ITERATION
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
144 #define PTY_OPEN \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
145 if ((fd = getpt()) < 0 || grantpt (fd) < 0 || unlockpt (fd) < 0) \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
146 return -1;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
147 #define PTY_NAME_SPRINTF
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
148 #define PTY_TTY_NAME_SPRINTF strcpy (pty_name, ptsname (fd));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
149 #endif
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
150
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 371
diff changeset
151 #endif /* INCLUDED_process_h_ */