This file is indexed.

/usr/lib/ocaml/ocamlviz/ocamlviz_threads.mli is in libocamlviz-ocaml-dev 1.01-2build5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
(**************************************************************************)
(*                                                                        *)
(*  Ocamlviz --- real-time profiling tools for Objective Caml             *)
(*  Copyright (C) by INRIA - CNRS - Universite Paris Sud                  *)
(*  Authors: Julien Robert                                                *)
(*           Guillaume Von Tokarski                                       *)
(*           Sylvain Conchon                                              *)
(*           Jean-Christophe Filliatre                                    *)
(*           Fabrice Le Fessant                                           *)
(*  GNU Library General Public License version 2                          *)
(*  See file LICENSE for details                                          *)
(*                                                                        *)
(**************************************************************************)

(** Library to instrument the monitored program (when using a thread server) *)

include Monitor_sig.Monitor

val yield : unit -> unit
  (** Use this function to allow monitoring in computation-only code. *)

val send_now : unit -> unit
  (** [send_now ()] immediatly sends the current values of monitored datas to the clients. *)

val init : unit -> unit
  (** [init ()] has to be used to initialize Ocamlviz_threads. *)