summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGleb Popov <6yearold@gmail.com>2020-05-26 18:50:05 +0400
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-05-29 01:41:53 -0400
commit998450f4c67e8f701455927c9619b8d53f2b733b (patch)
tree8673f458fc4b489e67a37c1d215b019770b387fd
parent8b4948951198f93290191d4ee32f92dffed803f4 (diff)
downloadhaskell-998450f4c67e8f701455927c9619b8d53f2b733b.tar.gz
Always define USE_PTHREAD_FOR_ITIMER for FreeBSD.
-rw-r--r--rts/posix/Itimer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/posix/Itimer.c b/rts/posix/Itimer.c
index e889cdfad9..80925df703 100644
--- a/rts/posix/Itimer.c
+++ b/rts/posix/Itimer.c
@@ -48,7 +48,7 @@
#define USE_PTHREAD_FOR_ITIMER
#endif
-#if defined(freebsd_HOST_OS) && defined(THREADED_RTS)
+#if defined(freebsd_HOST_OS)
#define USE_PTHREAD_FOR_ITIMER
#endif