The operations in this module automatically manage a Thread per domain that runs a Unix.select loop to support the operations.
⚠️ Signal handlers are unfortunately fundamentally non-compositional. The use of signal handlers in this module has been designed to be configurable, which should allow co-operating with other libraries using signals as long as care is taken at application startup to configure things.
⚠️ All the usual limitations of the Unix module apply.
cancel_after computation ~seconds exn_bt arranges for computation to be canceled with given exn_bt after given time in seconds. Completion of the computation before the specified time effectively cancels the timeout.
ℹ️ You can use cancel_after to implement the handler for the Cancel_after effect.
return_on computation fd op value arranges for computation to be returned with given value when fd becomes available for op. Completion of the computation before the fd becomes available for op effectively cancels the arrangement.
ℹ️ Using Unix.set_nonblock and return_on you can implement direct-style transparently asynchronous IO on top of the Unix module.
return_on_sigchld computation value arranges for computation to be returned with given value on next Sys.sigchld. Completion of the computation before a Sys.sigchld is received effectively cancels the arrangement.
⚠️ The mechanism uses the Sys.sigchld signal which should not be used for other purposes.
Configuration
val configure : ?intr_sig:int ->?handle_sigchld:bool ->unit -> unit
configure ~intr_sig ~handle_sigchld () can, and sometimes must, be called by an application to configure the use of signals by this module.
The optional intr_sig argument can be used to specify the signal used by the interrupt mechanism. The default is to use Sys.sigusr2.
The optional handle_sigchld argument can be used to specify whether this module should setup handling of Sys.sigchld. The default is true. When explicitly specified as ~handle_sigchld:false, the application should arrange to call handle_signal whenever a Sys.sigchld signal occurs.
⚠️ This module must always be configured before use. Unless this module has been explicitly configured, calling a method of this module from the main thread on the main domain will automatically configure this module with default options. In case the application uses multiple threads or multiple domains, the application should arrange to call configure from the main thread on the main domain before any threads or domains besides the main are created or spawned.
val handle_signal : int -> unit
handle_signal signum should be called to notify this module of a signal when configured to not handle said signals.
val check_configured : unit -> unit
check_configured () checks whether this module has already been configured or not and, if not, calls configure with default arguments.
ℹ️ The intended use case for check_configure () is at the point of entry of schedulers and other facilities that use this module.