sig
type shm_id = [ `Shm_id of int ]
type shm_condition = [ `Normal | `Tight ]
class type shm_manager =
object
method book_allocation : Plasma_shm.shm_id -> int -> unit
method new_id : unit -> Plasma_shm.shm_id
method shm_condition : Plasma_shm.shm_condition
end
class null_shm_manager : unit -> shm_manager
class netplex_shm_manager : unit -> shm_manager
module Netplex_shm_manager :
sig
val post_add_hook : Netplex_types.controller -> unit
val init : low:int64 -> high:int64 -> unit
end
end