diff options
| author | Ben Gamari <ben@well-typed.com> | 2022-12-19 23:53:48 +0000 |
|---|---|---|
| committer | Ben Gamari <ben@well-typed.com> | 2022-12-19 23:53:48 +0000 |
| commit | d5dd1a944f37d4b5d44654403243fbdcf2b236c7 (patch) | |
| tree | 1393e08a1f1b2e71296a085a9afe3f9f05c5d303 | |
| parent | 761c1f49f55afc9a9f290fafb48885c2033069ed (diff) | |
| download | haskell-wip/mut-var-comment.tar.gz | |
rts: MUT_VAR is not a StgMutArrPtrswip/mut-var-comment
There was previously a comment claiming that the MUT_VAR closure type
had the layout of StgMutArrPtrs.
| -rw-r--r-- | rts/include/rts/storage/Closures.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/rts/include/rts/storage/Closures.h b/rts/include/rts/storage/Closures.h index 01ae438a43..1af689e5f1 100644 --- a/rts/include/rts/storage/Closures.h +++ b/rts/include/rts/storage/Closures.h @@ -211,8 +211,7 @@ typedef struct { // An array of heap objects, ie Array# v and MutableArray# v // // Closure types: MUT_ARR_PTRS_CLEAN, MUT_ARR_PTRS_DIRTY, -// MUT_ARR_PTRS_FROZEN_DIRTY, MUT_ARR_PTRS_FROZEN_CLEAN, MUT_VAR_CLEAN, -// MUT_VAR_DIRTY +// MUT_ARR_PTRS_FROZEN_DIRTY, MUT_ARR_PTRS_FROZEN_CLEAN typedef struct _StgMutArrPtrs { StgHeader header; StgWord ptrs; |
