diff options
author | John Ericson <git@JohnEricson.me> | 2019-07-10 11:54:47 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-07-14 01:21:48 -0400 |
commit | d7c6c4717cdf1b7bd8550e37da66c52275c802f0 (patch) | |
tree | 7488a774c7b8e288b4373bcdc9121b53ba1492ea /rts/Capability.c | |
parent | bd9fc1b2adea718be089b8370d2e82ea55af6539 (diff) | |
download | haskell-d7c6c4717cdf1b7bd8550e37da66c52275c802f0.tar.gz |
Expunge #ifdef and #ifndef from the codebase
These are unexploded minds as far as the linter is concerned. I don't
want to hit in my MRs by mistake!
I did this with `sed`, and then rolled back some changes in the docs,
config.guess, and the linter itself.
Diffstat (limited to 'rts/Capability.c')
-rw-r--r-- | rts/Capability.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rts/Capability.c b/rts/Capability.c index bda3b0e681..33a94398cd 100644 --- a/rts/Capability.c +++ b/rts/Capability.c @@ -842,7 +842,7 @@ void waitForCapability (Capability **pCap, Task *task) * * ------------------------------------------------------------------------- */ -#if defined (THREADED_RTS) +#if defined(THREADED_RTS) /* See Note [GC livelock] in Schedule.c for why we have gcAllowed and return the bool */ @@ -948,7 +948,7 @@ yieldCapability (Capability** pCap, Task *task, bool gcAllowed) * get every Capability into the GC. * ------------------------------------------------------------------------- */ -#if defined (THREADED_RTS) +#if defined(THREADED_RTS) void prodCapability (Capability *cap, Task *task) @@ -970,7 +970,7 @@ prodCapability (Capability *cap, Task *task) * * ------------------------------------------------------------------------- */ -#if defined (THREADED_RTS) +#if defined(THREADED_RTS) bool tryGrabCapability (Capability *cap, Task *task) |