0
|
1 /* System-dependent prototypes
|
|
2 Copyright (C) 1985, 1993, 1994 Free Software Foundation, Inc.
|
|
3
|
|
4 This file is part of XEmacs.
|
|
5
|
|
6 XEmacs is free software; you can redistribute it and/or modify it
|
|
7 under the terms of the GNU General Public License as published by the
|
|
8 Free Software Foundation; either version 2, or (at your option) any
|
|
9 later version.
|
|
10
|
|
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
14 for more details.
|
|
15
|
|
16 You should have received a copy of the GNU General Public License
|
|
17 along with XEmacs; see the file COPYING. If not, write to
|
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
19 Boston, MA 02111-1307, USA. */
|
|
20
|
|
21 /* Synched up with: FSF 19.30. Split out of sysdep.c/emacs.c. */
|
|
22
|
|
23 #ifndef _XEMACS_SYSDEP_H_
|
|
24 #define _XEMACS_SYSDEP_H_
|
|
25
|
|
26 #include <setjmp.h>
|
|
27
|
|
28 extern char **environ;
|
|
29
|
|
30 struct emacs_tty;
|
|
31 int emacs_get_tty (int fd, struct emacs_tty *settings);
|
|
32 int emacs_set_tty (int fd, struct emacs_tty *settings, int waitp);
|
|
33
|
|
34 int eight_bit_tty (struct device *d);
|
|
35
|
|
36 void stuff_char (struct console *con, int c);
|
|
37
|
|
38 void init_baud_rate (struct device *d);
|
|
39
|
|
40 void set_exclusive_use (int fd);
|
|
41
|
|
42 void set_descriptor_non_blocking (int fd);
|
|
43
|
|
44 void wait_without_blocking (void);
|
|
45
|
|
46 /* Wait for subprocess with process id `pid' to terminate and
|
|
47 make sure it will get eliminated (not remain forever as a zombie) */
|
|
48 void wait_for_termination (int pid);
|
|
49
|
|
50 /* flush any pending output
|
|
51 * (may flush input as well; it does not matter the way we use it)
|
|
52 */
|
|
53 void flush_pending_output (int channel);
|
|
54
|
|
55 void child_setup_tty (int out);
|
|
56
|
|
57 /* Suspend the Emacs process; give terminal to its superior. */
|
|
58 void sys_suspend (void);
|
108
|
59 /* Suspend a process if possible; give termianl to its superior. */
|
|
60 void sys_suspend_process (int process);
|
0
|
61
|
|
62 void request_sigio (void);
|
|
63 void unrequest_sigio (void);
|
|
64
|
|
65 void stop_interrupts (void);
|
|
66 void start_interrupts (void);
|
|
67 void slow_down_interrupts (void);
|
|
68 void speed_up_interrupts (void);
|
|
69 void init_poll_for_quit (void);
|
|
70 void reset_poll_for_quit (void);
|
|
71
|
|
72 /* Used so that signals can break out of system calls that aren't
|
|
73 naturally interruptible. */
|
|
74
|
|
75 extern JMP_BUF break_system_call_jump;
|
16
|
76 extern volatile int can_break_system_calls;
|
0
|
77
|
|
78 int sys_write_1 (int fildes, CONST void *buf, unsigned int nbyte,
|
|
79 int allow_quit);
|
|
80 int sys_read_1 (int fildes, void *buf, unsigned int nbyte,
|
|
81 int allow_quit);
|
|
82
|
|
83 /* Call these functions if you want to change some terminal parameter --
|
|
84 reset the console, change the parameter, and init it again. */
|
|
85 void init_one_console (struct console *c);
|
|
86 void reset_one_console (struct console *c);
|
|
87 void init_one_device (struct device *d);
|
|
88 void reset_one_device (struct device *d);
|
|
89
|
|
90 /* Prepare all terminals for exiting Emacs; move the cursor to the
|
|
91 bottom of the frame, turn off special modes, etc. Called at exit.
|
|
92 This calls reset_one_console() on all consoles and does some other
|
|
93 stuff (e.g. fix the foreground pgroup). */
|
|
94
|
|
95 void reset_all_consoles (void);
|
|
96
|
|
97 /* Call these functions if you are going to temporarily exit back to
|
|
98 the shell (e.g. when suspending). This calls reset_one_console()
|
|
99 on the initial console and does some other stuff (e.g. fix the
|
|
100 foreground pgroup). */
|
|
101
|
|
102 void reset_initial_console (void);
|
|
103 void reinit_initial_console (void);
|
|
104
|
|
105 /* We muck around with our process group. This function needs
|
|
106 to be called at startup. The rest of the mucking is done as
|
|
107 part of the functions reset_all_consoles(), reset_initial_console(),
|
|
108 and reinit_initial_console(). */
|
|
109
|
|
110 void init_process_group (void);
|
|
111 void munge_tty_process_group (void);
|
|
112 void unmunge_tty_process_group (void);
|
|
113
|
|
114 void disconnect_controlling_terminal (void);
|
|
115
|
|
116 /* Return nonzero if safe to use tabs in output.
|
|
117 At the time this is called, init_sys_modes has not been done yet. */
|
|
118 int tabs_safe_p (struct device *d);
|
|
119
|
|
120 /* Get terminal size from system.
|
|
121 If zero or a negative number is stored, the value is not valid. */
|
|
122 void get_tty_device_size (struct device *d, int *widthp, int *heightp);
|
|
123 /* Set the logical window size associated with descriptor FD */
|
|
124 int set_window_size (int fd, int height, int width);
|
|
125
|
|
126 /* Set up the proper status flags for use of a pty. */
|
|
127 void setup_pty (int fd);
|
|
128
|
|
129 /* Return the address of the start of the text segment prior to unexec. */
|
|
130 char *start_of_text (void);
|
|
131 /* Return the address of the start of the data segment prior to unexec. */
|
|
132 void *start_of_data (void);
|
|
133 /* Return the address of the end of the text segment prior to unexec. */
|
|
134 char *end_of_text (void);
|
|
135 /* Return the address of the end of the data segment prior to unexec. */
|
|
136 char *end_of_data (void);
|
|
137
|
|
138 /* Get_system_name returns as its value a string for system-name to return. */
|
|
139 void init_system_name (void);
|
|
140
|
163
|
141 #ifndef HAVE_GETCWD
|
|
142 char *getcwd (char *pathname, int size);
|
0
|
143 #endif
|
|
144
|
|
145 #ifndef HAVE_RENAME
|
|
146 int rename (CONST char *from, CONST char *to);
|
|
147 #endif
|
|
148
|
|
149 #ifndef HAVE_DUP2
|
|
150 int dup2 (int oldd, int newd);
|
|
151 #endif
|
|
152
|
|
153 #ifndef HAVE_STRERROR
|
|
154 /* X11R6 defines strerror as a macro */
|
|
155 # ifdef strerror
|
|
156 # undef strerror
|
|
157 # endif
|
|
158 CONST char *strerror (int);
|
|
159 #endif
|
|
160
|
255
|
161 #ifdef WINDOWSNT
|
|
162 void mswindows_set_errno (unsigned long win32_error);
|
|
163 void mswindows_set_last_errno (void);
|
|
164 #endif
|
|
165
|
225
|
166 int interruptible_open (CONST char *path, int oflag, int mode);
|
|
167
|
0
|
168 #ifndef HAVE_H_ERRNO
|
|
169 extern int h_errno;
|
|
170 #endif
|
|
171
|
|
172 #endif /* _XEMACS_SYSDEP_H_ */
|