diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-10-21 23:21:01 +0000 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-10-22 12:13:36 -0400 |
commit | 06d51c4ef776ee1bf66e3603b4c6e4e2acf8ba3c (patch) | |
tree | dec20251f027a9aba915f706c077c20c6fe5b062 /rts/sm/NonMovingMark.c | |
parent | 17e5a032a66bc043b453727706d4fa95a7951202 (diff) | |
download | haskell-wip/gc/nonmoving-concurrent.tar.gz |
Fix unregisterised buildwip/gc/nonmoving-concurrent
This required some fiddling around with the location of forward
declarations since the C sources generated by GHC's C backend only
includes Stg.h.
Diffstat (limited to 'rts/sm/NonMovingMark.c')
-rw-r--r-- | rts/sm/NonMovingMark.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/sm/NonMovingMark.c b/rts/sm/NonMovingMark.c index 9d046ce068..72a3ca69cb 100644 --- a/rts/sm/NonMovingMark.c +++ b/rts/sm/NonMovingMark.c @@ -536,7 +536,7 @@ inline void updateRemembSetPushClosure(Capability *cap, StgClosure *p) push_closure(queue, p, NULL); } -void updateRemembSetPushClosure_(StgRegTable *reg, StgClosure *p) +void updateRemembSetPushClosure_(StgRegTable *reg, struct StgClosure_ *p) { updateRemembSetPushClosure(regTableToCapability(reg), p); } |