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