omni::core::kResultInterrupted

Defined in omni/core/Result.h

constexpr Result omni::core::kResultInterrupted = 0xa4310001

An operation was interrupted. An “interruption” happens in cases where the operation did not complete successfully due to an outside system (such as a timer) interrupting it. For example, a function Result wait_for(duration d) might give kResultSuccess when function returns because the duration expired and kResultInterrupted if the system is shutting down.

  • POSIX: EINTR

  • Windows: WSAEINTR