home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / debug / gdb / readline / rldefs.h < prev    next >
C/C++ Source or Header  |  1995-07-28  |  8KB  |  260 lines

  1. /* rldefs.h -- an attempt to isolate some of the system-specific defines
  2.    for readline.  This should be included after any files that define
  3.    system-specific constants like _POSIX_VERSION or USG. */
  4.  
  5. /* Copyright (C) 1987,1989 Free Software Foundation, Inc.
  6.  
  7.    This file contains the Readline Library (the Library), a set of
  8.    routines for providing Emacs style line input to programs that ask
  9.    for it.
  10.  
  11.    The Library is free software; you can redistribute it and/or modify
  12.    it under the terms of the GNU General Public License as published by
  13.    the Free Software Foundation; either version 1, or (at your option)
  14.    any later version.
  15.  
  16.    The Library is distributed in the hope that it will be useful, but
  17.    WITHOUT ANY WARRANTY; without even the implied warranty of
  18.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  19.    General Public License for more details.
  20.  
  21.    The GNU General Public License is often shipped with GNU software, and
  22.    is generally kept in a file called COPYING or LICENSE.  If you do not
  23.    have a copy of the license, write to the Free Software Foundation,
  24.    675 Mass Ave, Cambridge, MA 02139, USA. */
  25.  
  26. #if !defined (_RLDEFS_H)
  27. #define _RLDEFS_H
  28.  
  29. #if defined (__GNUC__)
  30. #  undef alloca
  31. #  define alloca __builtin_alloca
  32. #else
  33. #  if defined (sparc) || defined (HAVE_ALLOCA_H)
  34. #    include <alloca.h>
  35. #  endif
  36. #endif
  37.  
  38.  
  39. #define NEW_TTY_DRIVER
  40. #define HAVE_BSD_SIGNALS
  41. /* #define USE_XON_XOFF */
  42.  
  43. #if defined(__MSDOS__) || defined(WIN32)
  44. #define NO_SYS_FILE
  45. #define SIGALRM 1234
  46. #undef NEW_TTY_DRIVER
  47. #undef HAVE_BSD_SIGNALS
  48. #undef NEW_TTY_DRIVER
  49. #undef HAVE_BSD_SIGNALS
  50. #define MINIMAL
  51. #endif
  52.  
  53. #if defined (__linux__)
  54. #  include <termcap.h>
  55. #endif /* __linux__ */
  56.  
  57. /* Some USG machines have BSD signal handling (sigblock, sigsetmask, etc.) */
  58. /* CYGNUS LOCAL accept __hpux as well as hpux for HP compiler in ANSI mode.  */
  59. #if defined (USG) && !(defined (hpux) || defined (__hpux))
  60. #  undef HAVE_BSD_SIGNALS
  61. #endif
  62.  
  63. /* System V machines use termio. */
  64. #if !defined (_POSIX_VERSION)
  65. /* CYGNUS LOCAL accept __hpux as well as hpux for HP compiler in ANSI mode.  */
  66. #  if defined (USG) || defined (hpux) || defined (__hpux) || defined (Xenix) || defined (sgi) || defined (DGUX)
  67. #    undef NEW_TTY_DRIVER
  68. #    define TERMIO_TTY_DRIVER
  69. #    include <termio.h>
  70. #    if !defined (TCOON)
  71. #      define TCOON 1
  72. #    endif
  73. #  endif /* USG || hpux || Xenix || sgi || DUGX */
  74. #endif /* !_POSIX_VERSION */
  75.  
  76. /* Posix systems use termios and the Posix signal functions. */
  77. #if defined (_POSIX_VERSION)
  78. #  if !defined (TERMIOS_MISSING)
  79. #    undef NEW_TTY_DRIVER
  80. #    define TERMIOS_TTY_DRIVER
  81. #    include <termios.h>
  82. #  endif /* !TERMIOS_MISSING */
  83. #  define HAVE_POSIX_SIGNALS
  84. #  if !defined (O_NDELAY)
  85. #    define O_NDELAY O_NONBLOCK    /* Posix-style non-blocking i/o */
  86. #  endif /* O_NDELAY */
  87. #endif /* _POSIX_VERSION */
  88.  
  89. /* System V.3 machines have the old 4.1 BSD `reliable' signal interface. */
  90. #if !defined (HAVE_BSD_SIGNALS) && !defined (HAVE_POSIX_SIGNALS)
  91. #  if defined (USGr3)
  92. #    if !defined (HAVE_USG_SIGHOLD)
  93. #      define HAVE_USG_SIGHOLD
  94. #    endif /* !HAVE_USG_SIGHOLD */
  95. #  endif /* USGr3 */
  96. #endif /* !HAVE_BSD_SIGNALS && !HAVE_POSIX_SIGNALS */
  97.  
  98. /* Other (BSD) machines use sgtty. */
  99. #if defined (NEW_TTY_DRIVER)
  100. #  include <sgtty.h>
  101. #endif
  102.  
  103. /* Define _POSIX_VDISABLE if we are not using the `new' tty driver and
  104.    it is not already defined.  It is used both to determine if a
  105.    special character is disabled and to disable certain special
  106.    characters.  Posix systems should set to 0, USG systems to -1. */
  107. #if !defined (NEW_TTY_DRIVER) && !defined (_POSIX_VDISABLE)
  108. #  if defined (_POSIX_VERSION)
  109. #    define _POSIX_VDISABLE 0
  110. #  else /* !_POSIX_VERSION */
  111. #    define _POSIX_VDISABLE -1
  112. #  endif /* !_POSIX_VERSION */
  113. #endif /* !NEW_TTY_DRIVER && !_POSIX_VDISABLE */
  114.  
  115. #if 1
  116. #  define D_NAMLEN(d) strlen ((d)->d_name)
  117. #else /* !1 */
  118.  
  119. #if !defined (SHELL) && (defined (_POSIX_VERSION) || defined (USGr3))
  120. #  if !defined (HAVE_DIRENT_H)
  121. #    define HAVE_DIRENT_H
  122. #  endif /* !HAVE_DIRENT_H */
  123. #endif /* !SHELL && (_POSIX_VERSION || USGr3) */
  124.  
  125. #if defined (HAVE_DIRENT_H)
  126. #  include <dirent.h>
  127. #  if !defined (direct)
  128. #    define direct dirent
  129. #  endif /* !direct */
  130. #  define D_NAMLEN(d) strlen ((d)->d_name)
  131. #else /* !HAVE_DIRENT_H */
  132. #  define D_NAMLEN(d) ((d)->d_namlen)
  133. #  if defined (USG)
  134. #    if defined (Xenix)
  135. #      include <sys/ndir.h>
  136. #    else /* !Xenix (but USG...) */
  137. #      include "ndir.h"
  138. #    endif /* !Xenix */
  139. #  else /* !USG */
  140. #    include <sys/dir.h>
  141. #  endif /* !USG */
  142. #endif /* !HAVE_DIRENT_H */
  143. #endif /* !1 */
  144.  
  145. #if defined (USG) && defined (TIOCGWINSZ) && !defined (Linux)
  146. #  include <sys/stream.h>
  147. #  if defined (HAVE_SYS_PTEM_H)
  148. #    include <sys/ptem.h>
  149. #  endif /* HAVE_SYS_PTEM_H */
  150. #  if defined (HAVE_SYS_PTE_H)
  151. #    include <sys/pte.h>
  152. #  endif /* HAVE_SYS_PTE_H */
  153. #endif /* USG && TIOCGWINSZ && !Linux */
  154.  
  155. /* Posix macro to check file in statbuf for directory-ness.
  156.    This requires that <sys/stat.h> be included before this test. */
  157. #if defined (S_IFDIR) && !defined (S_ISDIR)
  158. #define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR)
  159. #endif
  160. /* Posix macro to check file in statbuf for file-ness.
  161.    This requires that <sys/stat.h> be included before this test. */
  162. #if defined (S_IFREG) && !defined (S_ISREG)
  163. #define S_ISREG(m) (((m)&S_IFMT) == S_IFREG)
  164. #endif
  165.  
  166. #if !defined (strchr) && !defined (__STDC__)
  167. extern char *strchr (), *strrchr ();
  168. #endif /* !strchr && !__STDC__ */
  169.  
  170. #if defined (HAVE_VARARGS_H)
  171. #  include <varargs.h>
  172. #endif /* HAVE_VARARGS_H */
  173.  
  174. /* This definition is needed by readline.c, rltty.c, and signals.c. */
  175. /* If on, then readline handles signals in a way that doesn't screw. */
  176. #define HANDLE_SIGNALS
  177.  
  178. #if !defined (emacs_mode)
  179. #  define no_mode -1
  180. #  define vi_mode 0
  181. #  define emacs_mode 1
  182. #endif
  183.  
  184. /* Define some macros for dealing with assorted signalling disciplines.
  185.  
  186.    These macros provide a way to use signal blocking and disabling
  187.    without smothering your code in a pile of #ifdef's.
  188.  
  189.    SIGNALS_UNBLOCK;            Stop blocking all signals.
  190.  
  191.    {
  192.      SIGNALS_DECLARE_SAVED (name);    Declare a variable to save the 
  193.                     signal blocking state.
  194.     ...
  195.      SIGNALS_BLOCK (SIGSTOP, name);    Block a signal, and save the previous
  196.                     state for restoration later.
  197.     ...
  198.      SIGNALS_RESTORE (name);        Restore previous signals.
  199.    }
  200.  
  201. */
  202.  
  203. #ifdef HAVE_POSIX_SIGNALS
  204.                             /* POSIX signals */
  205.  
  206. #define    SIGNALS_UNBLOCK \
  207.       do { sigset_t set;    \
  208.     sigemptyset (&set);    \
  209.     sigprocmask (SIG_SETMASK, &set, (sigset_t *)NULL);    \
  210.       } while (0)
  211.  
  212. #define    SIGNALS_DECLARE_SAVED(name)    sigset_t name
  213.  
  214. #define    SIGNALS_BLOCK(SIG, saved)    \
  215.     do { sigset_t set;        \
  216.       sigemptyset (&set);        \
  217.       sigaddset (&set, SIG);    \
  218.       sigprocmask (SIG_BLOCK, &set, &saved);    \
  219.     } while (0)
  220.  
  221. #define    SIGNALS_RESTORE(saved)        \
  222.   sigprocmask (SIG_SETMASK, &saved, (sigset_t *)NULL)
  223.  
  224.  
  225. #else    /* HAVE_POSIX_SIGNALS */
  226. #ifdef HAVE_BSD_SIGNALS
  227.                             /* BSD signals */
  228.  
  229. #define    SIGNALS_UNBLOCK            sigsetmask (0)
  230. #define    SIGNALS_DECLARE_SAVED(name)    int name
  231. #define    SIGNALS_BLOCK(SIG, saved)    saved = sigblock (sigmask (SIG))
  232. #define    SIGNALS_RESTORE(saved)        sigsetmask (saved)
  233.  
  234.  
  235. #else  /* HAVE_BSD_SIGNALS */
  236.                             /* None of the Above */
  237.  
  238. #define    SIGNALS_UNBLOCK            /* nothing */
  239. #define    SIGNALS_DECLARE_SAVED(name)    /* nothing */
  240. #define    SIGNALS_BLOCK(SIG, saved)    /* nothing */
  241. #define    SIGNALS_RESTORE(saved)        /* nothing */
  242.  
  243.  
  244. #endif /* HAVE_BSD_SIGNALS */
  245. #endif /* HAVE_POSIX_SIGNALS */
  246.  
  247. #if !defined (strchr)
  248. extern char *strchr ();
  249. #endif
  250. #if !defined (strrchr)
  251. extern char *strrchr ();
  252. #endif
  253. #ifdef __STDC__
  254. #include <stddef.h>
  255. extern size_t strlen (const char *s);
  256. #endif  /* __STDC__ */
  257.  
  258. /*  End of signal handling definitions.  */
  259. #endif /* !_RLDEFS_H */
  260.