diff options
author | Ömer Sinan Ağacan <omeragacan@gmail.com> | 2019-01-16 09:47:35 +0300 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-01-16 14:19:44 -0500 |
commit | 6aaa0655a721605740f23e49c5b4bf6165bfe865 (patch) | |
tree | 64e8332404d495fcb1da8b51e5bea76913b7a232 /includes | |
parent | 8765c1e6e6aca590a2fc252c64846890bf87f387 (diff) | |
download | haskell-6aaa0655a721605740f23e49c5b4bf6165bfe865.tar.gz |
Documentation for StgRetFun
Diffstat (limited to 'includes')
-rw-r--r-- | includes/rts/storage/Closures.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/includes/rts/storage/Closures.h b/includes/rts/storage/Closures.h index 7db67c708e..3e90306b65 100644 --- a/includes/rts/storage/Closures.h +++ b/includes/rts/storage/Closures.h @@ -260,6 +260,9 @@ typedef struct { * info table describes the pointerhood of the arguments). * * The stack frame size is also cached in the frame for convenience. + * + * The only RET_FUN is stg_gc_fun, which is created by __stg_gc_fun, + * both in HeapStackCheck.cmm. */ typedef struct { const StgInfoTable* info; |