mirror of
https://github.com/c-cube/nanoev.git
synced 2025-12-06 03:05:32 -05:00
9 lines
250 B
OCaml
9 lines
250 B
OCaml
(** Nano event loop *)
|
|
|
|
include module type of struct
|
|
include Nanoev
|
|
end
|
|
|
|
val create : unit -> t
|
|
(** Create a [Nanoev.t] based on [Unix.select]. This is fairly limited and only
|
|
works in processes that have fewer than 1024 FDs open in total. *)
|