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 /includes/rts/storage | |
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 'includes/rts/storage')
-rw-r--r-- | includes/rts/storage/Closures.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/rts/storage/Closures.h b/includes/rts/storage/Closures.h index 6088fc8a10..b2b5eda407 100644 --- a/includes/rts/storage/Closures.h +++ b/includes/rts/storage/Closures.h @@ -94,7 +94,7 @@ typedef struct StgClosure_ { struct StgClosure_ *payload[]; } *StgClosurePtr; // StgClosure defined in rts/Types.h -typedef struct { +typedef struct StgThunk_ { StgThunkHeader header; struct StgClosure_ *payload[]; } StgThunk; |