diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2021-07-23 05:11:59 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-08-09 15:11:58 -0400 |
commit | fc350dba63da7eefbaa2793fe9fe99f8571b75c0 (patch) | |
tree | a607a0c9ddc2d051cc282d29a9285fbb8aa347e3 /rts/posix/ticker/Pthread.c | |
parent | db7098fe7aa3f7324d146821334b774032ea87bd (diff) | |
download | haskell-fc350dba63da7eefbaa2793fe9fe99f8571b75c0.tar.gz |
Make `PosixSource.h` installed and under `rts/`
is used outside of the rts so we do this rather than just fish it out of
the repo in ad-hoc way, in order to make packages in this repo more
self-contained.
Diffstat (limited to 'rts/posix/ticker/Pthread.c')
-rw-r--r-- | rts/posix/ticker/Pthread.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rts/posix/ticker/Pthread.c b/rts/posix/ticker/Pthread.c index 3cc7b2b801..796cf5eb24 100644 --- a/rts/posix/ticker/Pthread.c +++ b/rts/posix/ticker/Pthread.c @@ -35,7 +35,7 @@ * etc.). */ -#include "PosixSource.h" +#include "rts/PosixSource.h" #include "Rts.h" #include "Ticker.h" @@ -187,8 +187,8 @@ initTicker (Time interval, TickProc handle_tick) * On FreeBSD 12.2 pthread_set_name_np() is unconditionally declared in * <pthread_np.h>, while pthread_setname_np() is conditionally declared in * <pthread.h> when _POSIX_SOURCE is not defined, but we're including - * <PosixSource.h>, so must use pthread_set_name_np() instead. See similar - * code in "rts/posix/OSThreads.c". + * <rts/PosixSource.h>, so must use pthread_set_name_np() instead. See + * similar code in "rts/posix/OSThreads.c". * * Create the thread with all blockable signals blocked, leaving signal * handling to the main and/or other threads. This is especially useful in |