DoxigAlpha

have_segfault_handling_support

Whether or not the current target can print useful debug information when a segfault occurs.

Source

Implementation

#
pub const have_segfault_handling_support = switch (native_os) {
    .linux,
    .macos,
    .netbsd,
    .solaris,
    .illumos,
    .windows,
    => true,

    .freebsd, .openbsd => have_ucontext,
    else => false,
}