annotate src/sysdep.h @ 398:74fd4e045ea6 r21-2-29

Import from CVS: tag r21-2-29
author cvs
date Mon, 13 Aug 2007 11:13:30 +0200
parents 8626e4521993
children 2f8bb876ab1d
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 /* System-dependent prototypes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1985, 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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 /* Synched up with: FSF 19.30. Split out of sysdep.c/emacs.c. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
23 #ifndef INCLUDED_sysdep_h_
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
24 #define INCLUDED_sysdep_h_
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 #include <setjmp.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
28 #ifndef WINDOWSNT
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 extern char **environ;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
30 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 int eight_bit_tty (struct device *d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 void stuff_char (struct console *con, int c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 void init_baud_rate (struct device *d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 void set_exclusive_use (int fd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 void set_descriptor_non_blocking (int fd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 void wait_without_blocking (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 255
diff changeset
44 int get_pty_max_bytes (int fd);
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 255
diff changeset
45 Bufbyte get_eof_char (int fd);
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 255
diff changeset
46
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 /* Wait for subprocess with process id `pid' to terminate and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 make sure it will get eliminated (not remain forever as a zombie) */
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
49 #ifdef WINDOWSNT
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
50 #include <windows.h>
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
51 void wait_for_termination (HANDLE pid);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
52 #else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 void wait_for_termination (int pid);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
54 #endif
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 /* flush any pending output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 * (may flush input as well; it does not matter the way we use it)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 void flush_pending_output (int channel);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 void child_setup_tty (int out);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 /* Suspend the Emacs process; give terminal to its superior. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 void sys_suspend (void);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
65 /* Suspend a process if possible; give terminal to its superior. */
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 70
diff changeset
66 void sys_suspend_process (int process);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 void request_sigio (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 void unrequest_sigio (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 void stop_interrupts (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 void start_interrupts (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 void slow_down_interrupts (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 void speed_up_interrupts (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 void init_poll_for_quit (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 void reset_poll_for_quit (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 /* Used so that signals can break out of system calls that aren't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 naturally interruptible. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 extern JMP_BUF break_system_call_jump;
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
82 extern volatile int can_break_system_calls;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
84 ssize_t sys_write_1 (int fildes, const void *buf, size_t nbyte,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
85 int allow_quit);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
86 ssize_t sys_read_1 (int fildes, void *buf, size_t nbyte,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
87 int allow_quit);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 /* Call these functions if you want to change some terminal parameter --
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 reset the console, change the parameter, and init it again. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 void init_one_console (struct console *c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 void reset_one_console (struct console *c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 void init_one_device (struct device *d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 void reset_one_device (struct device *d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 /* Prepare all terminals for exiting Emacs; move the cursor to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 bottom of the frame, turn off special modes, etc. Called at exit.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 This calls reset_one_console() on all consoles and does some other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 stuff (e.g. fix the foreground pgroup). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 void reset_all_consoles (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 /* Call these functions if you are going to temporarily exit back to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 the shell (e.g. when suspending). This calls reset_one_console()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 on the initial console and does some other stuff (e.g. fix the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 foreground pgroup). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 void reset_initial_console (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 void reinit_initial_console (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 /* We muck around with our process group. This function needs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 to be called at startup. The rest of the mucking is done as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 part of the functions reset_all_consoles(), reset_initial_console(),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 and reinit_initial_console(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 void init_process_group (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 void munge_tty_process_group (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 void unmunge_tty_process_group (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 void disconnect_controlling_terminal (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 /* Return nonzero if safe to use tabs in output.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 At the time this is called, init_sys_modes has not been done yet. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 int tabs_safe_p (struct device *d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 /* Get terminal size from system.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 If zero or a negative number is stored, the value is not valid. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 void get_tty_device_size (struct device *d, int *widthp, int *heightp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 /* Set the logical window size associated with descriptor FD */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 int set_window_size (int fd, int height, int width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 /* Set up the proper status flags for use of a pty. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 void setup_pty (int fd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 /* Return the address of the start of the text segment prior to unexec. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 char *start_of_text (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 /* Return the address of the start of the data segment prior to unexec. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 void *start_of_data (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 /* Return the address of the end of the text segment prior to unexec. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 char *end_of_text (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 /* Return the address of the end of the data segment prior to unexec. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 char *end_of_data (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 /* Get_system_name returns as its value a string for system-name to return. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 void init_system_name (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 108
diff changeset
147 #ifndef HAVE_GETCWD
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
148 char *getcwd (char *pathname, size_t size);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 #ifndef HAVE_RENAME
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
152 int rename (const char *from, const char *to);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 #ifndef HAVE_DUP2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 int dup2 (int oldd, int newd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 #ifndef HAVE_STRERROR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 /* X11R6 defines strerror as a macro */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 # ifdef strerror
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 # undef strerror
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 # endif
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
164 const char *strerror (int);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166
255
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 225
diff changeset
167 #ifdef WINDOWSNT
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 225
diff changeset
168 void mswindows_set_errno (unsigned long win32_error);
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 225
diff changeset
169 void mswindows_set_last_errno (void);
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 225
diff changeset
170 #endif
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 225
diff changeset
171
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
172 int interruptible_open (const char *path, int oflag, int mode);
225
12579d965149 Import from CVS: tag r20-4b11
cvs
parents: 209
diff changeset
173
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 #ifndef HAVE_H_ERRNO
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 extern int h_errno;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
178 #ifdef HAVE_REALPATH
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
179 #define xrealpath realpath
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
180 #else
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
181 char *xrealpath(const char *path, char resolved_path []);
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
182 #endif
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
183
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
184 #endif /* INCLUDED_sysdep_h_ */