Merged from the latest developing branch.
[MacVim.git] / src / os_unixx.h
blob3dd254e9ada3a1741bee7e48c3cdac596cec6d7c
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 */
9 /*
10 * os_unixx.h -- include files that are only used in os_unix.c
14 * Stuff for signals
16 #if defined(HAVE_SIGSET) && !defined(signal)
17 # define signal sigset
18 #endif
20 /* sun's sys/ioctl.h redefines symbols from termio world */
21 #if defined(HAVE_SYS_IOCTL_H) && !defined(sun)
22 # include <sys/ioctl.h>
23 #endif
25 #ifndef USE_SYSTEM /* use fork/exec to start the shell */
27 # if defined(HAVE_SYS_WAIT_H) || defined(HAVE_UNION_WAIT)
28 # include <sys/wait.h>
29 # endif
31 # if defined(HAVE_SYS_SELECT_H) && \
32 (!defined(HAVE_SYS_TIME_H) || defined(SYS_SELECT_WITH_SYS_TIME))
33 # include <sys/select.h>
34 # endif
36 # ifndef WEXITSTATUS
37 # ifdef HAVE_UNION_WAIT
38 # define WEXITSTATUS(stat_val) ((stat_val).w_T.w_Retcode)
39 # else
40 # define WEXITSTATUS(stat_val) (((stat_val) >> 8) & 0377)
41 # endif
42 # endif
44 # ifndef WIFEXITED
45 # ifdef HAVE_UNION_WAIT
46 # define WIFEXITED(stat_val) ((stat_val).w_T.w_Termsig == 0)
47 # else
48 # define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
49 # endif
50 # endif
52 #endif /* !USE_SYSTEM */
54 #ifdef HAVE_STROPTS_H
55 #ifdef sinix
56 #define buf_T __system_buf_t__
57 #endif
58 # include <stropts.h>
59 #ifdef sinix
60 #undef buf_T
61 #endif
62 #endif
64 #ifdef HAVE_STRING_H
65 # include <string.h>
66 #endif
68 #ifndef HAVE_SELECT
69 # ifdef HAVE_SYS_POLL_H
70 # include <sys/poll.h>
71 # else
72 # ifdef HAVE_POLL_H
73 # include <poll.h>
74 # endif
75 # endif
76 #endif
78 #ifdef HAVE_SYS_STREAM_H
79 # include <sys/stream.h>
80 #endif
82 #ifdef HAVE_SYS_UTSNAME_H
83 # include <sys/utsname.h>
84 #endif
86 #ifdef HAVE_SYS_SYSTEMINFO_H
88 * foolish Sinix <sys/systeminfo.h> uses SYS_NMLN but doesn't include
89 * <limits.h>, where it is defined. Perhaps other systems have the same
90 * problem? Include it here. -- Slootman
92 # if defined(HAVE_LIMITS_H) && !defined(_LIMITS_H)
93 # include <limits.h> /* for SYS_NMLN (Sinix 5.41 / Unix SysV.4) */
94 # endif
96 /* Define SYS_NMLN ourselves if it still isn't defined (for CrayT3E). */
97 # ifndef SYS_NMLN
98 # define SYS_NMLN 32
99 # endif
101 # include <sys/systeminfo.h> /* for sysinfo */
102 #endif
105 * We use termios.h if both termios.h and termio.h are available.
106 * Termios is supposed to be a superset of termio.h. Don't include them both,
107 * it may give problems on some systems (e.g. hpux).
108 * I don't understand why we don't want termios.h for apollo.
110 #if defined(HAVE_TERMIOS_H) && !defined(apollo)
111 # include <termios.h>
112 #else
113 # ifdef HAVE_TERMIO_H
114 # include <termio.h>
115 # else
116 # ifdef HAVE_SGTTY_H
117 # include <sgtty.h>
118 # endif
119 # endif
120 #endif
122 #ifdef HAVE_SYS_PTEM_H
123 # include <sys/ptem.h> /* must be after termios.h for Sinix */
124 # ifndef _IO_PTEM_H /* For UnixWare that should check for _IO_PT_PTEM_H */
125 # define _IO_PTEM_H
126 # endif
127 #endif
129 /* shared library access */
130 #if defined(HAVE_DLFCN_H) && defined(USE_DLOPEN)
131 # ifdef __MVS__
132 /* needed to define RTLD_LAZY (Anthony Giorgio) */
133 # define __SUSV3
134 # endif
135 # include <dlfcn.h>
136 #else
137 # if defined(HAVE_DL_H) && defined(HAVE_SHL_LOAD)
138 # include <dl.h>
139 # endif
140 #endif