diff options
author | Gleb Popov <6yearold@gmail.com> | 2020-05-26 18:50:05 +0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-05-29 01:41:53 -0400 |
commit | 998450f4c67e8f701455927c9619b8d53f2b733b (patch) | |
tree | 8673f458fc4b489e67a37c1d215b019770b387fd | |
parent | 8b4948951198f93290191d4ee32f92dffed803f4 (diff) | |
download | haskell-998450f4c67e8f701455927c9619b8d53f2b733b.tar.gz |
Always define USE_PTHREAD_FOR_ITIMER for FreeBSD.
-rw-r--r-- | rts/posix/Itimer.c | 2 |
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 |