Mercurial > emacs
annotate src/s/cygwin.h @ 110717:60a469b3a72c
* lisp/gnus/gnus-art.el (gnus-next-page-map): Drop Emacs 20 compat cruft.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sat, 02 Oct 2010 19:07:11 -0700 |
parents | a8b56c7dbb62 |
children | 1e7d8f405703 |
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. |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108507
diff
changeset
|
2 |
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108507
diff
changeset
|
3 Copyright (C) 1985, 1986, 1992, 1999, 2002, 2003, 2004, 2005, 2006, |
108691
5a44435f0c71
Set linker-related things with configure.
Glenn Morris <rgm@gnu.org>
parents:
108511
diff
changeset
|
4 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
49548 | 5 |
6 This file is part of GNU Emacs. | |
7 | |
94715
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91394
diff
changeset
|
8 GNU Emacs is free software: you can redistribute it and/or modify |
49548 | 9 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
|
10 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
|
11 (at your option) any later version. |
49548 | 12 |
13 GNU Emacs is distributed in the hope that it will be useful, | |
14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 GNU General Public License for more details. | |
17 | |
18 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
|
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
49548 | 20 |
21 /* SYSTEM_TYPE should indicate the kind of system you are using. | |
108691
5a44435f0c71
Set linker-related things with configure.
Glenn Morris <rgm@gnu.org>
parents:
108511
diff
changeset
|
22 It sets the Lisp variable system-type. */ |
49548 | 23 #define SYSTEM_TYPE "cygwin" |
24 | |
25 /* Emacs can read input using SIGIO and buffering characters itself, | |
26 or using CBREAK mode and making C-g cause SIGINT. | |
27 The choice is controlled by the variable interrupt_input. | |
28 | |
29 Define INTERRUPT_INPUT to make interrupt_input = 1 the default (use SIGIO) | |
30 | |
31 Emacs uses the presence or absence of the SIGIO and BROKEN_SIGIO macros | |
32 to indicate whether or not signal-driven I/O is possible. It uses | |
33 INTERRUPT_INPUT to decide whether to use it by default. | |
34 | |
35 SIGIO can be used only on systems that implement it (4.2 and 4.3). | |
36 CBREAK mode has two disadvantages | |
37 1) At least in 4.2, it is impossible to handle the Meta key properly. | |
38 I hear that in system V this problem does not exist. | |
39 2) Control-G causes output to be discarded. | |
40 I do not know whether this can be fixed in system V. | |
41 | |
42 Another method of doing input is planned but not implemented. | |
43 It would have Emacs fork off a separate process | |
44 to read the input and send it to the true Emacs process | |
45 through a pipe. */ | |
46 #undef INTERRUPT_INPUT | |
47 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108507
diff
changeset
|
48 /* Define HAVE_PTYS if the system supports pty devices. */ |
49548 | 49 #define HAVE_PTYS |
50 #define PTY_ITERATION for (i = 0; i < 1; i++) /* ick */ | |
51 #define PTY_NAME_SPRINTF /* none */ | |
52 #define PTY_TTY_NAME_SPRINTF /* none */ | |
53 #define PTY_OPEN \ | |
54 do \ | |
55 { \ | |
56 int dummy; \ | |
57 SIGMASKTYPE mask; \ | |
58 mask = sigblock (sigmask (SIGCHLD)); \ | |
59 if (-1 == openpty (&fd, &dummy, pty_name, 0, 0)) \ | |
60 fd = -1; \ | |
61 sigsetmask (mask); \ | |
62 emacs_close (dummy); \ | |
63 } \ | |
64 while (0) | |
65 | |
66 /* Define CLASH_DETECTION if you want lock files to be written | |
67 so that Emacs can tell instantly when you try to modify | |
68 a file that someone else has modified in his Emacs. */ | |
69 #define CLASH_DETECTION | |
70 | |
71 /* If the system's imake configuration file defines `NeedWidePrototypes' | |
72 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
|
73 generated in the Makefile generated by `xmkmf'. If we don't |
49548 | 74 define NARROWPROTO, we will see the wrong function prototypes |
75 for X functions taking float or double parameters. */ | |
76 #define NARROWPROTO 1 | |
77 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108507
diff
changeset
|
78 /* Used in various places to enable cygwin-specific code changes. */ |
49548 | 79 #define CYGWIN 1 |
80 | |
81 #define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_p - (FILE)->_bf._base) | |
106174
542223b15e9b
* s/cygwin.h: Remove unneeded linker flags.
Chong Yidong <cyd@stupidchicken.com>
parents:
100951
diff
changeset
|
82 |
49548 | 83 #define HAVE_SOCKETS |
84 | |
85 /* vfork() interacts badly with setsid(), causing ptys to fail to | |
86 change their controlling terminal */ | |
87 #define vfork fork | |
88 | |
84383
497448aab7db
(GC_MARK_STACK): Enable conservative stack marking.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78259
diff
changeset
|
89 /* 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
|
90 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
|
91 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
|
92 why it needed to be changed. */ |
497448aab7db
(GC_MARK_STACK): Enable conservative stack marking.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78259
diff
changeset
|
93 #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
|
94 |
91394 | 95 /* Virtual addresses of pure and impure space can vary, as on Windows. */ |
96 #define VIRT_ADDR_VARIES | |
97 | |
106497
d06619fa1742
* configure.in: Allow compiling Emacs with GTK on Cygwin.
Chong Yidong <cyd@stupidchicken.com>
parents:
106180
diff
changeset
|
98 /* Emacs supplies its own malloc, but glib (part of Gtk+) calls |
d06619fa1742
* configure.in: Allow compiling Emacs with GTK on Cygwin.
Chong Yidong <cyd@stupidchicken.com>
parents:
106180
diff
changeset
|
99 memalign and on Cygwin, that becomes the Cygwin-supplied memalign. |
d06619fa1742
* configure.in: Allow compiling Emacs with GTK on Cygwin.
Chong Yidong <cyd@stupidchicken.com>
parents:
106180
diff
changeset
|
100 As malloc is not the Cygwin malloc, the Cygwin memalign always |
d06619fa1742
* configure.in: Allow compiling Emacs with GTK on Cygwin.
Chong Yidong <cyd@stupidchicken.com>
parents:
106180
diff
changeset
|
101 returns ENOSYS. A workaround is to set G_SLICE=always-malloc. */ |
d06619fa1742
* configure.in: Allow compiling Emacs with GTK on Cygwin.
Chong Yidong <cyd@stupidchicken.com>
parents:
106180
diff
changeset
|
102 #define G_SLICE_ALWAYS_MALLOC |
d06619fa1742
* configure.in: Allow compiling Emacs with GTK on Cygwin.
Chong Yidong <cyd@stupidchicken.com>
parents:
106180
diff
changeset
|
103 |
52401 | 104 /* arch-tag: 5ae7ba00-83b0-4ab3-806a-3e845779191b |
105 (do not change this comment) */ |