diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2021-06-04 15:09:37 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-06-05 03:48:25 -0400 |
commit | 9a28680d2e23e7b25dd7254a439aea31dfae32d5 (patch) | |
tree | d6b41a447d8bfb5c907f5e278c7e5f1127c6c450 /includes/rts/Globals.h | |
parent | 1713cbb038116c2d703238b47f78c4861232db8e (diff) | |
download | haskell-9a28680d2e23e7b25dd7254a439aea31dfae32d5.tar.gz |
Put Unique related global variables in the RTS (#19940)
Diffstat (limited to 'includes/rts/Globals.h')
-rw-r--r-- | includes/rts/Globals.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/includes/rts/Globals.h b/includes/rts/Globals.h index 8d8df48b21..bd3aa637db 100644 --- a/includes/rts/Globals.h +++ b/includes/rts/Globals.h @@ -32,3 +32,5 @@ mkStoreAccessorPrototype(LibHSghcFastStringTable) mkStoreAccessorPrototype(LibHSghcGlobalHasPprDebug) mkStoreAccessorPrototype(LibHSghcGlobalHasNoDebugOutput) mkStoreAccessorPrototype(LibHSghcGlobalHasNoStateHack) +extern HsInt ghc_unique_counter; +extern HsInt ghc_unique_inc; |