mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
Basic local storage emulation using an atomic-protected map. The goal is for this to work both with 4.xx threads, 5.xx domains, and 5.xx threads running on a given domain.
10 lines
245 B
OCaml
10 lines
245 B
OCaml
Containers_testlib.run_all ~descr:"containers-thread"
|
|
[
|
|
T_bq.Test.get ();
|
|
T_lock.Test.get ();
|
|
T_pool.Test.get ();
|
|
T_semaphore.Test.get ();
|
|
T_thread.Test.get ();
|
|
T_timer.Test.get ();
|
|
T_local_storage.Test.get ();
|
|
]
|