1 /* System description file for Windows NT.
3 Copyright (C) 1993-1995, 2001-2013 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 /* Define symbols to identify the version of Unix this is.
21 Define all the symbols that apply correctly. */
29 /* Number of chars of output in the buffer of a stdio stream. */
30 #ifdef __GNU_LIBRARY__
31 #define PENDING_OUTPUT_COUNT(FILE) ((FILE)->__bufp - (FILE)->__buffer)
33 #define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_ptr - (FILE)->_base)
36 /* If you are compiling with a non-C calling convention but need to
37 declare vararg routines differently, put it here. */
38 #define _VARARGS_ __cdecl
40 /* If you are providing a function to something that will call the
41 function back (like a signal handler and signal, or main) its calling
42 convention must be whatever standard the libraries expect. */
43 #define _CALLBACK_ __cdecl
45 /* Define HAVE_TIMEVAL if the system supports the BSD style clock values.
46 Look in <sys/time.h> for a timeval structure. */
47 #define HAVE_TIMEVAL 1
49 /* But our select implementation doesn't allow us to make non-blocking
50 connects. So until that is fixed, this is necessary: */
51 #define BROKEN_NON_BLOCKING_CONNECT 1
53 /* And the select implementation does 1-byte read-ahead waiting
54 for received packets, so datagrams are broken too. */
55 #define BROKEN_DATAGRAM_SOCKETS 1
57 #define MAIL_USE_SYSTEM_LOCK 1
59 /* Define to 1 if GCC-style __attribute__ ((__aligned__ (expr))) works. */
61 #define HAVE_ATTRIBUTE_ALIGNED 1
64 /* Define to 1 if strtold conforms to C99. */
66 #define HAVE_C99_STRTOLD 1
69 #if (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 8))
70 # ifndef HAVE___BUILTIN_UNWIND_INIT
71 # define HAVE___BUILTIN_UNWIND_INIT 1
75 /* This isn't perfect, as some systems might have the page file in
76 another place. Also, I suspect that the time stamp of that file
77 might also change when Windows enlarges the file due to
78 insufficient VM. Still, this seems to be the most reliable way;
79 the alternative (of using GetSystemTimes) won't work on laptops
80 that hibernate, because the system clock is stopped then. Other
81 possibility would be to run "net statistics workstation" and parse
82 the output, but that's gross. So this should do; if the file is
83 not there, the boot time will be returned as zero, and filelock.c
84 already handles that. */
85 #define BOOT_TIME_FILE "C:/pagefile.sys"
87 /* ============================================================ */
89 /* Here, add any special hacks needed to make Emacs work on this
90 system. For example, you might define certain system call names
91 that don't exist on your system, or that do different things on
92 your system and must be used only through an encapsulation (which
93 you should place, by convention, in sysdep.c). */
100 #define inline __inline
104 /* config.h may have defined already. */
106 # define restrict __restrict__
109 /* FIXME: should we define to __restrict, which MSVC supports? */
113 /* `mode_t' is not defined for MSVC. Define. */
115 typedef unsigned short mode_t
;
118 /* A va_copy replacement for MSVC. */
121 # ifndef va_copy /* Need to be checked (?) */
122 # define va_copy(d,s) ((d) = (s))
124 # else /* not _WIN64 */
125 # define va_copy(d,s) ((d) = (s))
126 # endif /* not _WIN64 */
127 #endif /* _MSC_VER */
130 /* Some of the files of Emacs which are intended for use with other
131 programs assume that if you have a config.h file, you must declare
132 the type of getenv. */
133 extern char *getenv ();
136 /* Prevent accidental use of features unavailable in older Windows
137 versions we still support. MinGW64 defines this to a higher value
138 in its system headers, and is not really compatible with values
139 lower than 0x0500, so leave it alone. */
141 # define _WIN32_WINNT 0x0400
144 /* Make a leaner executable. */
145 #define WIN32_LEAN_AND_MEAN 1
147 #include <sys/types.h>
150 #define MAXPATHLEN _MAX_PATH
154 # ifndef HAVE_WINDOW_SYSTEM
155 # define HAVE_WINDOW_SYSTEM 1
158 # define HAVE_MENUS 1
162 /* Get some redefinitions in place. */
167 /* MinGW64 specific stuff. */
168 /* Make sure 'struct timespec' and 'struct timezone' are defined. */
169 #include <sys/types.h>
171 /* This prototype avoids MinGW64 compiler warnings due to the fact
172 that time.h is included before localtime is redirected to
173 sys_localtime below. */
174 extern struct tm
* sys_localtime (const time_t *);
175 /* MinGW64 uses a 2-argument _setjmp, and setjmp is a macro defined to
176 supply the 2nd arg correctly, so don't use _setjmp directly in that
182 #include <sys/timeb.h>
183 #include <sys/stat.h>
186 /* MSVC gets link-time errors without these redirections. */
187 #define fstat(a, b) sys_fstat(a, b)
188 #define stat(a, b) sys_stat(a, b)
189 #define utime sys_utime
192 /* Calls that are emulated or shadowed. */
194 #define chdir sys_chdir
196 #define chmod sys_chmod
198 #define close sys_close
200 #define creat sys_creat
201 #define ctime sys_ctime
205 #define dup2 sys_dup2
206 #define fopen sys_fopen
207 #define link sys_link
208 #define localtime sys_localtime
209 #define mkdir sys_mkdir
211 #define mktemp sys_mktemp
213 #define open sys_open
214 #define pipe sys_pipe
216 #define read sys_read
217 #define rename sys_rename
218 #define rmdir sys_rmdir
219 #define select sys_select
220 #define pselect sys_select
221 #define sleep sys_sleep
222 #define strerror sys_strerror
224 #define unlink sys_unlink
225 /* This prototype is needed because some files include config.h
226 _after_ the standard headers, so sys_unlink gets no prototype from
228 extern int sys_unlink (const char *);
230 #define write sys_write
232 /* Subprocess calls that are emulated. */
233 #define spawnve sys_spawnve
234 #define kill sys_kill
235 #define signal sys_signal
237 /* Internal signals. */
238 #define emacs_raise(sig) emacs_abort()
240 /* termcap.c calls that are emulated. */
241 #define tputs sys_tputs
242 #define tgetstr sys_tgetstr
244 /* cm.c calls that are emulated. */
245 #define chcheckmagic sys_chcheckmagic
246 #define cmcostinit sys_cmcostinit
247 #define cmgoto sys_cmgoto
248 #define cmputc sys_cmputc
249 #define Wcm_clear sys_Wcm_clear
253 /* Map to MSVC names. */
254 #define execlp _execlp
255 #define execvp _execvp
256 #define fdatasync _commit
257 #define fdopen _fdopen
258 #define fsync _commit
259 #define ftruncate _chsize
260 #define getpid _getpid
263 #define snprintf _snprintf
264 #define strtoll _strtoi64
265 #define copysign _copysign
267 #define isatty _isatty
268 #define _longjmp longjmp
271 #define pclose _pclose
273 #define strdup _strdup
274 #define strupr _strupr
275 #define strnicmp _strnicmp
276 #define stricmp _stricmp
279 /* We cannot include system header process.h, since there's src/process.h. */
282 /* Include time.h before redirecting tzname, since MSVC's time.h
283 defines _tzname to call a function, but also declares tzname a
284 2-element array. Having the redirection before including the
285 header thus has the effect of declaring a function that returns an
286 array, and triggers an error message. */
288 #define tzname _tzname
290 /* 'struct timespec' is used by time-related functions in lib/ and
291 elsewhere, but we don't use lib/time.h where the structure is
293 /* MinGW64 defines 'struct timespec' and _TIMESPEC_DEFINED in sys/types.h. */
294 #ifndef _TIMESPEC_DEFINED
297 time_t tv_sec
; /* seconds */
298 long int tv_nsec
; /* nanoseconds */
302 /* Required for functions in lib/time_r.c, since we don't use lib/time.h. */
303 extern struct tm
*gmtime_r (time_t const * restrict
, struct tm
* restrict
);
304 extern struct tm
*localtime_r (time_t const * restrict
, struct tm
* restrict
);
307 /* This is hacky, but is necessary to avoid warnings about macro
308 redefinitions using the MSVC compilers, since, when __STDC__ is
309 undefined or zero, those compilers declare functions like fileno,
310 lseek, and chdir, for which we defined macros above. */
313 #define MUST_UNDEF__STDC__
318 #ifdef MUST_UNDEF__STDC__
320 #undef MUST_UNDEF__STDC__
322 #else /* !_MSC_VER */
326 #endif /* !_MSC_VER */
328 #define fileno _fileno
331 /* Defines that we need that aren't in the standard signal.h. */
332 #define SIGHUP 1 /* Hang up */
333 #define SIGQUIT 3 /* Quit process */
334 #define SIGTRAP 5 /* Trace trap */
335 #define SIGKILL 9 /* Die, die die */
336 #define SIGPIPE 13 /* Write on pipe with no readers */
337 #define SIGALRM 14 /* Alarm */
338 #define SIGCHLD 18 /* Death of child */
339 #define SIGPROF 19 /* Profiling */
346 #define ENOTSUP ENOSYS
349 /* In case lib/errno.h is not used. */
351 #define EOPNOTSUPP 130
355 typedef int sigset_t
;
359 #ifdef _W64 /* MinGW64 */
361 typedef _sigset_t sigset_t
;
365 typedef void (_CALLBACK_
*signal_handler
) (int);
366 extern signal_handler
sys_signal (int, signal_handler
);
370 void (_CALLBACK_
*sa_handler
)(int);
375 #define SIG_SETMASK 2
376 #define SIG_UNBLOCK 3
378 extern int sigemptyset (sigset_t
*);
379 extern int sigaddset (sigset_t
*, int);
380 extern int sigfillset (sigset_t
*);
381 extern int sigprocmask (int, const sigset_t
*, sigset_t
*);
382 extern int pthread_sigmask (int, const sigset_t
*, sigset_t
*);
383 extern int sigismember (const sigset_t
*, int);
384 extern int setpgrp (int, int);
385 extern int sigaction (int, const struct sigaction
*, struct sigaction
*);
386 extern int alarm (int);
388 extern int sys_kill (int, int);
391 /* For integration with MSDOS support. */
392 #define getdisk() (_getdrive () - 1)
394 #define getdefdir(_drv, _buf) ((_buf[0] = (_drv + 'A' - 1), _buf[1] = ':', _buf[2] = '/', _buf[3] = 0), 1)
396 #define getdefdir(_drv, _buf) _getdcwd (_drv, _buf, MAXPATHLEN)
399 #ifndef EMACS_CONFIGURATION
400 extern char *get_emacs_configuration (void);
401 extern char *get_emacs_configuration_options (void);
402 #define EMACS_CONFIGURATION get_emacs_configuration ()
403 #define EMACS_CONFIG_OPTIONS get_emacs_configuration_options ()
406 /* Define this so that winsock.h definitions don't get included with
407 windows.h. For this to have proper effect, config.h must always be
408 included before windows.h. */
409 #define _WINSOCKAPI_ 1
412 /* Defines size_t and alloca (). */
414 #define malloc e_malloc
416 #define realloc e_realloc
417 #define calloc e_calloc
420 #define alloca _alloca
426 #include <sys/stat.h>
428 /* Define for those source files that do not include enough NT system files. */
433 #define NULL ((void *)0)
437 /* For proper declaration of environ. */
439 #define sys_nerr _sys_nerr
442 /* This must be after including stdlib.h, which defines putenv on MinGW. */
446 #define putenv sys_putenv
447 extern int sys_putenv (char *);
449 extern int getloadavg (double *, int);
450 extern int getpagesize (void);
452 extern void * memrchr (void const *, int, size_t);
455 #if defined (__MINGW32__)
457 /* Define to 1 if the system has the type `long long int'. */
458 # ifndef HAVE_LONG_LONG_INT
459 # define HAVE_LONG_LONG_INT 1
462 /* Define to 1 if the system has the type `unsigned long long int'. */
463 # ifndef HAVE_UNSIGNED_LONG_LONG_INT
464 # define HAVE_UNSIGNED_LONG_LONG_INT 1
471 typedef __int64 EMACS_INT
;
472 typedef unsigned __int64 EMACS_UINT
;
473 # define EMACS_INT_MAX LLONG_MAX
474 # define PRIuMAX "llu"
476 /* Fix a bug in MSVC headers : stdint.h */
478 # elif defined(_WIN32)
479 /* Temporarily disable wider-than-pointer integers until they're tested more.
480 Build with CFLAGS='-DWIDE_EMACS_INT' to try them out. */
482 # ifdef WIDE_EMACS_INT
484 /* Use pre-C99-style 64-bit integers. */
485 typedef __int64 EMACS_INT
;
486 typedef unsigned __int64 EMACS_UINT
;
487 # define EMACS_INT_MAX LLONG_MAX
488 # define PRIuMAX "llu"
491 typedef int EMACS_INT
;
492 typedef unsigned int EMACS_UINT
;
493 # define EMACS_INT_MAX LONG_MAX
494 # define PRIuMAX "lu"
500 /* We need a little extra space, see ../../lisp/loadup.el. */
501 #define SYSTEM_PURESIZE_EXTRA 50000
503 #define DATA_START get_data_start ()
505 /* For unexec to work on Alpha systems, we need to put Emacs'
506 initialized data into a separate section from the CRT initialized
507 data (because the Alpha linker freely reorders data variables, even
508 across libraries, so our data and the CRT data get intermingled).
510 Starting with MSVC 5.0, we must also place the uninitialized data
511 into its own section. VC5 intermingles uninitialized data from the CRT
512 between Emacs' static uninitialized data and its public uninitialized
513 data. A separate .bss section for Emacs groups both static and
514 public uninitialized together.
516 Note that unexw32.c relies on this fact, and must be modified
517 accordingly if this section name is changed, or if this pragma is
518 removed. Also, obviously, all files that define initialized data
519 must include config.h to pick up this pragma. */
521 /* Names must be < 8 bytes. */
523 #pragma data_seg("EMDATA")
524 #pragma bss_seg("EMBSS")
527 /* #define FULL_DEBUG */
528 /* #define EMACSDEBUG */
531 extern void _DebPrint (const char *fmt
, ...);
532 #define DebPrint(stuff) _DebPrint stuff
534 #define DebPrint(stuff)
538 #if _MSC_VER >= 800 && !defined(__cplusplus)
539 /* Unnamed type definition in parentheses.
540 A structure, union, or enumerated type with no name is defined in a
541 parenthetical expression. The type definition is meaningless. */
542 #pragma warning(disable:4116)
543 /* 'argument' : conversion from 'type1' to 'type2', possible loss of
544 data A floating point type was converted to an integer type. A
545 possible loss of data may have occurred. */
546 #pragma warning(disable:4244)
547 /* Negative integral constant converted to unsigned type.
548 An expression converts a negative integer constant to an unsigned type.
549 The result of the expression is probably meaningless. */
550 #pragma warning(disable:4308)
555 /* ============================================================ */