/usr/lib/ocaml/netsys/netsys_pollset.mli is in libocamlnet-ocaml-dev 4.0.4-1build3.
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 | (* $Id: netsys_pollset.mli 1219 2009-04-14 13:28:56Z ChriS $ *)
(** Sets of file descriptors for polling *)
class type pollset =
object
method find : Unix.file_descr -> Netsys_posix.poll_req_events
(** Checks whether a descriptor is member of the set, and returns
its event mask. Raises [Not_found] if the descriptor is not in the set.
*)
method add : Unix.file_descr -> Netsys_posix.poll_req_events -> unit
(** Add a descriptor or modify an existing descriptor *)
method remove : Unix.file_descr -> unit
(** Remove a descriptor from the set (if it is member) *)
method wait : float ->
( Unix.file_descr *
Netsys_posix.poll_req_events *
Netsys_posix.poll_act_events ) list
(** Wait for events, and return the output events matching the event
mask. This is level-triggered polling, i.e. if a descriptor continues
to match an event mask, it is again reported the next time [wait]
is invoked.
There is no guarantee that the list is complete.
It is unspecified how the set reacts on descriptors that became
invalid (i.e. are closed) while being member of the set. The set
implementation is free to silently disregard such descriptors,
or to report them as invalid. It is strongly recommended to
remove descriptors before closing them.
*)
method dispose : unit -> unit
(** Release any OS resources associated with the pollset. The pollset
remains usable, however, and by invoking any method except
[cancel_wait] the required OS resources are automatically allocated
again. Only for [cancel_wait] it is ensured that the disposal
remains in effect.
*)
method cancel_wait : bool -> unit
(** There is a cancel bit in the pollset, and this method sets it
to the argument value.
When the bit is [true], any [wait] invocation will immediately
time out. It is allowed to set the cancel bit from another thread,
and when it becomes [true], a parallel running [wait] will
see that and timeout. Note that there is no
protection against race conditions: It is possible that [wait]
returns events that are found at the same time the cancellation
is carried out, i.e. you cannot rely on that the list returned
by [wait] is empty.
This is the only method of a pollset that is allowed to be called
from a different thread. If not supported on a platform this method
will fail.
*)
end
|