Up

module Caml_modify

: sig

Increment a counter whenever caml_modify is called.

This library wraps caml_modify at the C level, and should only be used in testing code.

#
external count : unit -> int = "check_caml_modify_count" "noalloc"

count () returns the number of times caml_modify has been called since the last call to reset.

#
external reset : unit -> unit = "check_caml_modify_reset" "noalloc"

reset () reset the counter to 0.

end