tiny_httpd.unix
Tiny_httpd_unix.Sem
semaphore, for limiting concurrency.
tiny_httpd
tiny_httpd.core
tiny_httpd.html
tiny_httpd.multipart-form-data
tiny_httpd.prometheus
tiny_httpd.ws
type t = {
mutable n : int;
max : int;
mutex : Mutex.t;
cond : Condition.t;
}
val create : int -> t
val acquire : int -> t -> unit
val release : int -> t -> unit
val num_acquired : t -> int