This file is indexed.

/usr/lib/ocaml/ocamlbricks/threadExtra.mli is in libocamlbricks-ocaml-dev 0.90+bzr367-1build1.

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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
(* This file is part of ocamlbricks
   Copyright (C) 2011 2012 2013  Jean-Vincent Loddo

   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>. *)


(** Similar to [Thread.create] with two differences:
    (1) you may create a killable thread (but only a limited number of threads
        of your application may be killable at the same time)
    (2) you are able to call [ThreadExtra.at_exit] in the function ('a -> 'b)
        that will be executed in the created thread. *)
val create : ?killable:unit -> ('a -> 'b) -> 'a -> Thread.t

(** Create a thread that waits for a process termination. By default the process is killed if
    the application terminates (by default we suppose that the application is the father and
    the owner of this process). *)
val waitpid_thread :
  ?killable:unit ->
  ?before_waiting:(pid:int -> unit) ->
  ?after_waiting:(pid:int -> Unix.process_status -> unit) ->
  ?perform_when_suspended:(pid:int -> unit) ->
  ?perform_when_resumed:(pid:int -> unit) ->
  ?fallback:(pid:int -> exn -> unit) ->
  ?do_not_kill_process_if_exit:unit ->
  unit -> (pid:int -> Thread.t)

(** Apply [Unix.fork] immediately creating a thread that waits for the termination of this fork. *)
val fork_with_tutor :
  ?killable:unit ->
  ?before_waiting:(pid:int->unit) ->
  ?after_waiting:(pid:int -> Unix.process_status -> unit) ->
  ?perform_when_suspended:(pid:int -> unit) ->
  ?perform_when_resumed:(pid:int -> unit) ->
  ?fallback:(pid:int -> exn -> unit) ->
  ?do_not_kill_process_if_exit:unit ->
  ('a -> 'b) -> 'a -> Thread.t

module Easy_API : sig

  type options

  val make_options :
    ?enrich:options ->
    ?killable:unit ->
    ?before_waiting:(pid:int->unit) ->
    ?after_waiting:(pid:int -> Unix.process_status -> unit) ->
    ?perform_when_suspended:(pid:int -> unit) ->
    ?perform_when_resumed:(pid:int -> unit) ->
    ?fallback:(pid:int -> exn -> unit) ->
    ?do_not_kill_process_if_exit:unit ->
    unit -> options

  val waitpid_thread :
    ?options:options ->
    unit -> (pid:int -> Thread.t)

  val fork_with_tutor :
    ?options:options ->
    ('a -> 'b) -> 'a -> Thread.t

end (* Easy_API *)

val at_exit : (unit -> unit) -> unit

val kill      : Thread.t -> bool
val killall   : unit -> unit
val killable  : unit -> int list
val killer    : Thread.t -> unit -> unit

val set_killable_with_thunk : ?who:Thread.t -> (unit -> unit) -> unit

val id_kill   : int -> bool
val id_killer : int -> unit -> unit

val delayed_kill    : float -> Thread.t -> unit
val delayed_killall : float -> unit
val delayed_id_kill : float -> int -> unit

val delay : float -> unit