diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2010-05-03 21:00:10 -0700 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2010-05-03 21:00:10 -0700 |
commit | ef03a4e61efa0003b1b6be961b58297ccfddc664 (patch) | |
tree | 9a644546e94468429dfac802c3f885cdfa886d08 /src/msdos.c | |
parent | ede4834a2f3f657ff79a730b52605ad8d3ef533e (diff) | |
download | emacs-ef03a4e61efa0003b1b6be961b58297ccfddc664.tar.gz emacs-ef03a4e61efa0003b1b6be961b58297ccfddc664.tar.bz2 emacs-ef03a4e61efa0003b1b6be961b58297ccfddc664.zip |
Remove POSIX_SIGNALS.
* s/usg5-4.h (POSIX_SIGNALS):
* s/netbsd.h (POSIX_SIGNALS):
* s/msdos.h (POSIX_SIGNALS):
* s/ms-w32.h (POSIX_SIGNALS):
* s/hpux11.h (POSIX_SIGNALS):
* s/gnu.h (POSIX_SIGNALS):
* s/gnu-linux.h (POSIX_SIGNALS):
* s/freebsd.h (POSIX_SIGNALS):
* s/darwin.h (POSIX_SIGNALS):
* s/cygwin.h (POSIX_SIGNALS):
* s/aix4-2.h (POSIX_SIGNALS): Remove definition.
* s/unixware.h:
* s/sol2-6.h: Remove comments on POSIX_SIGNALS.
* process.c (create_process):
* syssignal.h:
* sysdep.c (wait_for_termination, init_signals):
* process.c (create_process):
* msdos.c: POSIX_SIGNALS is always defined on all platforms,
remove all code that assumes the contrary.
Diffstat (limited to 'src/msdos.c')
-rw-r--r-- | src/msdos.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/msdos.c b/src/msdos.c index 6cde7cd6ebc..28d621f8cc1 100644 --- a/src/msdos.c +++ b/src/msdos.c @@ -4458,8 +4458,6 @@ setpriority (x,y,z) int x,y,z; { return 0; } #if __DJGPP__ == 2 && __DJGPP_MINOR__ < 2 -#ifdef POSIX_SIGNALS - /* Augment DJGPP library POSIX signal functions. This is needed as of DJGPP v2.01, but might be in the library in later releases. */ @@ -4557,12 +4555,6 @@ sigprocmask (how, new_set, old_set) return 0; } -#else /* not POSIX_SIGNALS */ - -sigsetmask (x) int x; { return 0; } -sigblock (mask) int mask; { return 0; } - -#endif /* not POSIX_SIGNALS */ #endif /* not __DJGPP_MINOR__ < 2 */ #ifndef HAVE_SELECT |