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.
10 * os_unixx.h -- include files that are only used in os_unix.c
16 #if defined(HAVE_SIGSET) && !defined(signal)
17 # define signal sigset
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>
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>
32 # ifdef HAVE_UNION_WAIT
33 # define WEXITSTATUS(stat_val) ((stat_val).w_T.w_Retcode)
35 # define WEXITSTATUS(stat_val) (((stat_val) >> 8) & 0377)
40 # ifdef HAVE_UNION_WAIT
41 # define WIFEXITED(stat_val) ((stat_val).w_T.w_Termsig == 0)
43 # define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
47 #endif /* !USE_SYSTEM */
51 #define buf_T __system_buf_t__
63 #ifdef HAVE_SYS_STREAM_H
64 # include <sys/stream.h>
67 #ifdef HAVE_SYS_UTSNAME_H
68 # include <sys/utsname.h>
71 #ifdef HAVE_SYS_SYSTEMINFO_H
73 * foolish Sinix <sys/systeminfo.h> uses SYS_NMLN but doesn't include
74 * <limits.h>, where it is defined. Perhaps other systems have the same
75 * problem? Include it here. -- Slootman
77 # if defined(HAVE_LIMITS_H) && !defined(_LIMITS_H)
78 # include <limits.h> /* for SYS_NMLN (Sinix 5.41 / Unix SysV.4) */
81 /* Define SYS_NMLN ourselves if it still isn't defined (for CrayT3E). */
86 # include <sys/systeminfo.h> /* for sysinfo */
90 * We use termios.h if both termios.h and termio.h are available.
91 * Termios is supposed to be a superset of termio.h. Don't include them both,
92 * it may give problems on some systems (e.g. hpux).
93 * I don't understand why we don't want termios.h for apollo.
95 #if defined(HAVE_TERMIOS_H) && !defined(apollo)
107 #ifdef HAVE_SYS_PTEM_H
108 # include <sys/ptem.h> /* must be after termios.h for Sinix */
109 # ifndef _IO_PTEM_H /* For UnixWare that should check for _IO_PT_PTEM_H */
114 /* shared library access */
115 #if defined(HAVE_DLFCN_H) && defined(USE_DLOPEN)
117 /* needed to define RTLD_LAZY (Anthony Giorgio) */
122 # if defined(HAVE_DL_H) && defined(HAVE_SHL_LOAD)