This file is indexed.

/usr/lib/ocaml/biniou/bi_share.mli is in libbiniou-ocaml-dev 1.0.0-1build2.

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
27
28
29
30
31
32
33
34
35
36
37
38
(* $Id: bi_share.mli 58 2010-11-15 00:23:24Z mjambon $ *)

(**/**)

type type_id
val dummy_type_id : type_id
val create_type_id : unit -> type_id

module Wr :
sig
  type tbl
  val create : int -> tbl
  val clear : tbl -> unit

  val put : tbl -> ('a * type_id) -> int -> int
    (** [put tbl x pos] returns 0 if [x] is not already in the table
	and adds [x] to the table.  [pos] is the absolute position 
	of the first byte of the ref value excluding its tag.
	If [x] is found in the table, then the difference between
	[pos] and the original position is returned.
    *)
end

module Rd :
sig
  type tbl
  val create : int -> tbl
  val clear : tbl -> unit

  val put : tbl -> (int * type_id) -> Obj.t -> unit
    (** [put tbl pos x] puts the position of a new shared value into the
	table.  [pos] is the absolute position of the first byte
	of the ref value excluding its tag. *)

  val get : tbl -> (int * type_id) -> Obj.t
    (** [get tbl pos] returns the value stored at this position
	or raises a {!Bi_util.Error} exception. *)
end