struct EXCEPTION [src]
Fields
_: u29 = 0
BACKTRACE_PREFERRED: bool = falsePrefer sending a catch_exception_raice_backtrace message, if applicable.
ERRORS: bool = falseinclude additional exception specific errors, not used yet.
CODES: bool = falseSend 64-bit code and subcode in the exception header */
Members
- MASK (Constant)
Source
pub const EXCEPTION = packed struct(exception_mask_t) {
_: u29 = 0,
/// Prefer sending a catch_exception_raice_backtrace message, if applicable.
BACKTRACE_PREFERRED: bool = false,
/// include additional exception specific errors, not used yet.
ERRORS: bool = false,
/// Send 64-bit code and subcode in the exception header */
CODES: bool = false,
pub const MASK: exception_mask_t = @bitCast(MACH.EXCEPTION{
.BACKTRACE_PREFERRED = true,
.ERRORS = true,
.CODES = true,
});
}