ocaml-tsan icon indicating copy to clipboard operation
ocaml-tsan copied to clipboard

Race detection in OCaml using the ThreadSanitizer runtime analysis.

Results 2 ocaml-tsan issues
Sort by recently updated
recently updated
newest added

### How to reproduce ```ocaml let table = Hashtbl.create 64 let read_table () = for _ = 0 to 99 do let key = QCheck.Gen.(generate1 small_string) in try ignore (Hashtbl.find...

Reported by @ElectreAAS. To reproduce: ``` git clone [email protected]:ElectreAAS/irmin.git cd irmin git checkout direct-style opam switch create . 5.0.0+tsan --no-install opam pin -n . --with-version=dev --kind=path opam install ./irmin-pack --deps-only...