annotate src/s/cygwin.h @ 101224:9346c2b4e4eb

(copyright-update): Doc fix.
author Glenn Morris <rgm@gnu.org>
date Fri, 16 Jan 2009 03:19:58 +0000
parents e038c1a8307c
children 542223b15e9b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
94715
1f134b61867c Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91394
diff changeset
1 /* System description header file for Cygwin.
1f134b61867c Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91394
diff changeset
2 Copyright (C) 1985, 1986, 1992, 1999, 2002, 2003, 2004, 2005, 2006,
100951
e038c1a8307c Add 2009 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 96985
diff changeset
3 2007, 2008, 2009 Free Software Foundation, Inc.
49548
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
4
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
5 This file is part of GNU Emacs.
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
6
94715
1f134b61867c Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91394
diff changeset
7 GNU Emacs is free software: you can redistribute it and/or modify
49548
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
8 it under the terms of the GNU General Public License as published by
94715
1f134b61867c Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91394
diff changeset
9 the Free Software Foundation, either version 3 of the License, or
1f134b61867c Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91394
diff changeset
10 (at your option) any later version.
49548
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
11
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
12 GNU Emacs is distributed in the hope that it will be useful,
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
15 GNU General Public License for more details.
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
16
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
94715
1f134b61867c Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91394
diff changeset
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
49548
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
19
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
20 /* SYSTEM_TYPE should indicate the kind of system you are using.
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
21 It sets the Lisp variable system-type. */
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
22
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
23 #define SYSTEM_TYPE "cygwin"
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
24
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
25 /* Emacs can read input using SIGIO and buffering characters itself,
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
26 or using CBREAK mode and making C-g cause SIGINT.
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
27 The choice is controlled by the variable interrupt_input.
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
28
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
29 Define INTERRUPT_INPUT to make interrupt_input = 1 the default (use SIGIO)
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
30
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
31 Emacs uses the presence or absence of the SIGIO and BROKEN_SIGIO macros
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
32 to indicate whether or not signal-driven I/O is possible. It uses
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
33 INTERRUPT_INPUT to decide whether to use it by default.
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
34
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
35 SIGIO can be used only on systems that implement it (4.2 and 4.3).
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
36 CBREAK mode has two disadvantages
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
37 1) At least in 4.2, it is impossible to handle the Meta key properly.
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
38 I hear that in system V this problem does not exist.
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
39 2) Control-G causes output to be discarded.
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
40 I do not know whether this can be fixed in system V.
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
41
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
42 Another method of doing input is planned but not implemented.
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
43 It would have Emacs fork off a separate process
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
44 to read the input and send it to the true Emacs process
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
45 through a pipe. */
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
46
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
47 #undef INTERRUPT_INPUT
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
48
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
49 /*
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
50 * Define HAVE_TERMIOS if the system provides POSIX-style
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
51 * functions and macros for terminal control.
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
52 *
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
53 * Define HAVE_TERMIO if the system provides sysV-style ioctls
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
54 * for terminal control.
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
55 *
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
56 * Do not define both. HAVE_TERMIOS is preferred, if it is
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
57 * supported on your system.
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
58 */
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
59
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
60 #define HAVE_TERMIOS
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
61
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
62 /*
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
63 * Define HAVE_PTYS if the system supports pty devices.
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
64 */
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
65
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
66 #define HAVE_PTYS
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
67 #define PTY_ITERATION for (i = 0; i < 1; i++) /* ick */
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
68 #define PTY_NAME_SPRINTF /* none */
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
69 #define PTY_TTY_NAME_SPRINTF /* none */
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
70 #define PTY_OPEN \
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
71 do \
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
72 { \
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
73 int dummy; \
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
74 SIGMASKTYPE mask; \
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
75 mask = sigblock (sigmask (SIGCHLD)); \
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
76 if (-1 == openpty (&fd, &dummy, pty_name, 0, 0)) \
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
77 fd = -1; \
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
78 sigsetmask (mask); \
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
79 emacs_close (dummy); \
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
80 } \
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
81 while (0)
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
82
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
83 /* Define this symbol if your system has the functions bcopy, etc. */
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
84
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
85 #define BSTRING
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
86
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
87 /* Define CLASH_DETECTION if you want lock files to be written
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
88 so that Emacs can tell instantly when you try to modify
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
89 a file that someone else has modified in his Emacs. */
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
90
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
91 #define CLASH_DETECTION
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
92
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
93 /* If the system's imake configuration file defines `NeedWidePrototypes'
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
94 as `NO', we must define NARROWPROTO manually. Such a define is
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49548
diff changeset
95 generated in the Makefile generated by `xmkmf'. If we don't
49548
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
96 define NARROWPROTO, we will see the wrong function prototypes
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
97 for X functions taking float or double parameters. */
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
98
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
99 #define NARROWPROTO 1
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
100
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
101 /* used in various places to enable cygwin-specific code changes */
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
102 #define CYGWIN 1
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
103
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
104 #define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_p - (FILE)->_bf._base)
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
105 #define SYSV_SYSTEM_DIR 1
54825
59000534cc29 Changes for Cygwin unexec() support, changes in Cygwin itself.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52401
diff changeset
106 #define UNEXEC unexcw.o
49548
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
107 #define POSIX_SIGNALS 1
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
108 /* force the emacs image to start high in memory, so dll relocation
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
109 can put things in low memory without causing all sorts of grief for
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
110 emacs lisp pointers */
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
111 #define DATA_SEG_BITS 0x20000000
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
112 #define LINKER $(CC) -Wl,--image-base,DATA_SEG_BITS
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
113
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
114 /* Use terminfo instead of termcap. Fewer environment variables to
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
115 go wrong, more terminal types. */
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
116 #define TERMINFO
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
117
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
118 #define HAVE_SOCKETS
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
119
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
120 /* vfork() interacts badly with setsid(), causing ptys to fail to
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
121 change their controlling terminal */
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
122 #define vfork fork
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
123
84383
497448aab7db (GC_MARK_STACK): Enable conservative stack marking.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78259
diff changeset
124 /* This should work (at least when compiling with gcc). But I have no way
497448aab7db (GC_MARK_STACK): Enable conservative stack marking.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78259
diff changeset
125 or intention to verify or even test it. If you encounter a problem with
497448aab7db (GC_MARK_STACK): Enable conservative stack marking.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78259
diff changeset
126 it, feel free to change this setting, but please add a comment here about
497448aab7db (GC_MARK_STACK): Enable conservative stack marking.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78259
diff changeset
127 why it needed to be changed. */
497448aab7db (GC_MARK_STACK): Enable conservative stack marking.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78259
diff changeset
128 #define GC_MARK_STACK GC_MAKE_GCPROS_NOOPS
497448aab7db (GC_MARK_STACK): Enable conservative stack marking.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78259
diff changeset
129
91394
237670472243 Define VIRT_ADDR_VARIES.
Jason Rumney <jasonr@gnu.org>
parents: 87649
diff changeset
130 /* Virtual addresses of pure and impure space can vary, as on Windows. */
237670472243 Define VIRT_ADDR_VARIES.
Jason Rumney <jasonr@gnu.org>
parents: 87649
diff changeset
131 #define VIRT_ADDR_VARIES
237670472243 Define VIRT_ADDR_VARIES.
Jason Rumney <jasonr@gnu.org>
parents: 87649
diff changeset
132
49548
8b1c605f8c9b Initial revision.
Juanma Barranquero <lekktu@gmail.com>
parents:
diff changeset
133 /* the end */
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
134
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
135 /* arch-tag: 5ae7ba00-83b0-4ab3-806a-3e845779191b
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
136 (do not change this comment) */