Contents

interrupted

Interrupted function call.

Declaration

static var interrupted: Errno { get }

Mentioned in

Discussion

The process caught an asynchronous signal (such as SIGINT or SIGQUIT) during the execution of an interruptible function. If the signal handler performs a normal return, the caller of the interrupted function call receives this error.

The corresponding C error is EINTR.

See Also

System Call Errors