summaryrefslogtreecommitdiff
path: root/rts/Trace.c
diff options
context:
space:
mode:
authorErik de Castro Lopo <erikd@mega-nerd.com>2015-10-26 20:42:30 +0100
committerBen Gamari <ben@smart-cactus.org>2015-10-26 21:42:57 +0100
commit23e344bbbd27418bb84bdc588374b3e44f6d23a6 (patch)
treee621ef8fc81eedfbc9f2ff45a7688d9cd41efb77 /rts/Trace.c
parent73c273af193f56ea339d423e79d803bea5f45db5 (diff)
downloadhaskell-23e344bbbd27418bb84bdc588374b3e44f6d23a6.tar.gz
Remove cygwin32_HOST_OS #ifdefs
Build system support for Cygwin was removed in b6be81b841. Test Plan: - Validate on x86_64/linux - Cross-compile rts/RtsSymbols.c and rts/Linker.c to Windows using the i686-w64-mingw32-gcc and x86_64-w64-mingw32-gcc cross compilers. Reviewers: hvr, austin, bgamari Reviewed By: bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D1371
Diffstat (limited to 'rts/Trace.c')
-rw-r--r--rts/Trace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Trace.c b/rts/Trace.c
index 0ab636abf4..d0fa1e57a0 100644
--- a/rts/Trace.c
+++ b/rts/Trace.c
@@ -460,7 +460,7 @@ void traceOSProcessInfo_(void) {
CAPSET_OSPROCESS_DEFAULT,
getpid());
-#if !defined(cygwin32_HOST_OS) && !defined (mingw32_HOST_OS)
+#if !defined (mingw32_HOST_OS)
/* Windows has no strong concept of process hierarchy, so no getppid().
* In any case, this trace event is mainly useful for tracing programs
* that use 'forkProcess' which Windows doesn't support anyway.