Admin message

Due to a large amount of spam we do not allow new users to create repositories, they are "external" users. If you are a new user and want to create a repository, for example for forking GHC, open a new issue on ghc/ghc using the "get-verified" issue template

Data races in ioManagerWakeup reported by ThreadSanitizer (GHC v8.6.4)
Similar to https://gitlab.haskell.org/ghc/ghc/issues/16150 but a different one. Our local environment allows running Haskell programs under ThreadSanitizer. We disabled it for a while and then re-enabled it recently and we're seeing data race errors from GHC. It'd be great if someone could fix this because this makes it hard for us to enable ThreadSanitizer for our tests. ``` WARNING: ThreadSanitizer: data race (pid=1830) Read of size 8 at 0x7ba0000000a0 by thread T1: #0 write /proc/self/cwd/third_party/llvm/llvm/projects/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc:1115 (discriminator 18) (ecc9223f2e9ca92878082a9b248bf000254b28aa1e7f797cbb34c9f99565cd08_0200002b0840+0x5d883) #1 ioManagerWakeup vendor_src/v8_6_4/rts/posix/Signals.c:162 (libHSrts_thr-ghc8.6.4.so+0x4e4d4) Previous write of size 8 at 0x7ba0000000a0 by main thread: [failed to restore the stack] Location is file descriptor 10 created by main thread at: #0 eventfd /proc/self/cwd/third_party/llvm/llvm/projects/compiler-rt/lib/tsan/rtl/tsan_interceptors.cpp:1586 (discriminator 16) (ecc9223f2e9ca92878082a9b248bf000254b28aa1e7f797cbb34c9f99565cd08_0200002b0840+0x55ade) #1 c7Eq_info ghc_12.c:? (libHSbase-4.12.0.0-ghc8.6.4.so+0x893104) #2 __libc_start_main ??:? (libc.so.6+0x38bbc) Thread T1 'ghc_ticker' (tid=1832, running) created by main thread at: #0 pthread_create /proc/self/cwd/third_party/llvm/llvm/projects/compiler-rt/lib/tsan/rtl/tsan_interceptors.cpp:967 (discriminator 6) (ecc9223f2e9ca92878082a9b248bf000254b28aa1e7f797cbb34c9f99565cd08_0200002b0840+0x5152a) #1 initTicker vendor_src/v8_6_4/rts/posix/itimer/Pthread.c:167 (libHSrts_thr-ghc8.6.4.so+0x4d728) #2 __libc_start_main ??:? (libc.so.6+0x38bbc) SUMMARY: ThreadSanitizer: data race vendor_src/v8_6_4/rts/posix/Signals.c:162 in ioManagerWakeup ```
issue