ghc-heap-view 0.6.3 → 0.6.4
raw patch · 1 files changed
+4/−4 lines, 1 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
+ GHC.HeapView: IOPortClosure :: !StgInfoTable -> !b -> !b -> !b -> GenClosure b
+ GHC.HeapView: StackClosure :: !StgInfoTable -> !Word32 -> !Word8 -> !Word8 -> GenClosure b
+ GHC.HeapView: TSOClosure :: !StgInfoTable -> !b -> !b -> !b -> !b -> !b -> !b -> !WhatNext -> !WhyBlocked -> ![TsoFlags] -> !Word64 -> !Word32 -> !Word32 -> !Int64 -> !Word32 -> !Maybe StgTSOProfInfo -> GenClosure b
+ GHC.HeapView: [alloc_limit] :: GenClosure b -> !Int64
+ GHC.HeapView: [blocked_exceptions] :: GenClosure b -> !b
+ GHC.HeapView: [bq] :: GenClosure b -> !b
+ GHC.HeapView: [flags] :: GenClosure b -> ![TsoFlags]
+ GHC.HeapView: [global_link] :: GenClosure b -> !b
+ GHC.HeapView: [prof] :: GenClosure b -> !Maybe StgTSOProfInfo
+ GHC.HeapView: [saved_errno] :: GenClosure b -> !Word32
+ GHC.HeapView: [stack_dirty] :: GenClosure b -> !Word8
+ GHC.HeapView: [stack_marking] :: GenClosure b -> !Word8
+ GHC.HeapView: [stack_size] :: GenClosure b -> !Word32
+ GHC.HeapView: [threadId] :: GenClosure b -> !Word64
+ GHC.HeapView: [tot_stack_size] :: GenClosure b -> !Word32
+ GHC.HeapView: [trec] :: GenClosure b -> !b
+ GHC.HeapView: [tsoStack] :: GenClosure b -> !b
+ GHC.HeapView: [tso_dirty] :: GenClosure b -> !Word32
+ GHC.HeapView: [what_next] :: GenClosure b -> !WhatNext
+ GHC.HeapView: [why_blocked] :: GenClosure b -> !WhyBlocked
Files
- ghc-heap-view.cabal +4/−4
ghc-heap-view.cabal view
@@ -1,5 +1,5 @@ Name: ghc-heap-view-Version: 0.6.3+Version: 0.6.4 Synopsis: Extract the heap representation of Haskell values and thunks Description: This library provides functions to introspect the Haskell heap, for example@@ -59,9 +59,9 @@ Default: False custom-setup- setup-depends: base+ setup-depends: base >= 4.12 && < 4.18 setup-depends: filepath- setup-depends: Cabal >= 1.24 && < 3.7+ setup-depends: Cabal >= 1.24 && < 3.9 Library Default-Language: Haskell2010@@ -71,7 +71,7 @@ GHC.Disassembler GHC.HeapView.Debug Build-depends:- base >= 4.12 && < 4.17,+ base >= 4.12 && < 4.18, ghc-heap, containers, transformers,