What happened to `core.time_stamp_counter`?

Hello!
I have some benchmarks that use Jane Street’s Time_stamp_counter module. However, in recent versions of Jane Street’s libraries, I can’t find this module any more. Does it still exist? If so, what is the correct way of finding it (i.e., which version of which package should I require)?
Thanks for any help!
François.

Starting 0.15.0 time_stamp_counter is part of core_unix. You will need to link against core_unix.time_stamp_counter to access it.

2 Likes

Indeed, this works – thanks!