Module Memprof_coq.Thread_map

An async-safe, scoped thread-local store

type 'a t
val create : unit -> 'a t

Create an empty map

val with_value : 'a t -> value:'a -> scope:(unit -> 'b) -> 'b

Associate ~value to the current thread for the duration of a scope. It can be nested: the previous association is restored on exit.

val get : 'a t -> 'a option

Get the value currently associated with the current thread.