zig/std
Andrew Kelley 07a71fc322 improved behavior on debug safety crash
* instead of emitting a breakpoint for a debug safety crash,
   zig calls a panic function which prints an error message
   and a stack trace and then calls abort.
 * on freestanding OS, this panic function has a default
   implementation of a simple infinite loop.
 * users can override the panic implementation by providing
   `pub fn panic(message: []const u8) -> unreachable { }`
 * workaround for LLVM segfaulting when you try to use cold
   calling convention on ARM.

closes #245
2017-02-06 03:10:32 -05:00
..
bootstrap.zig improved behavior on debug safety crash 2017-02-06 03:10:32 -05:00
builtin.zig memset and memcpy implementations need not return dest 2017-02-04 23:04:07 -05:00
compiler_rt.zig
cstr.zig
darwin_x86_64.zig
darwin.zig
debug.zig improved behavior on debug safety crash 2017-02-06 03:10:32 -05:00
dwarf.zig
elf.zig mem.free no longer requires explicit type argument 2017-01-23 00:11:21 -05:00
empty.zig
endian.zig use comptime instead of inline for var and params 2017-01-22 19:51:37 -05:00
errno.zig
hash_map.zig mem.free no longer requires explicit type argument 2017-01-23 00:11:21 -05:00
index.zig Merge branch 'master' into ir-merge 2017-01-16 14:23:32 -05:00
io.zig remove ability to mark if and switch as inline 2017-02-02 13:23:18 -05:00
linux_i386.zig
linux_x86_64.zig
linux.zig
list.zig mem.free no longer requires explicit type argument 2017-01-23 00:11:21 -05:00
math.zig use comptime instead of inline for var and params 2017-01-22 19:51:37 -05:00
mem.zig mem.free no longer requires explicit type argument 2017-01-23 00:11:21 -05:00
net.zig
os.zig
panic.zig improved behavior on debug safety crash 2017-02-06 03:10:32 -05:00
rand_test.zig
rand.zig use comptime instead of inline for var and params 2017-01-22 19:51:37 -05:00
sort.zig use comptime instead of inline for var and params 2017-01-22 19:51:37 -05:00
str.zig use comptime instead of inline for var and params 2017-01-22 19:51:37 -05:00
test_runner_libc.zig
test_runner_nolibc.zig
test_runner.zig use printf in test runner code 2017-02-05 16:09:33 -05:00