ref: 9892228031c0ffcfa95a1443fc565b031525bb3a
dir: /lib/thread/exit+openbsd-x64.s/
/* const thread.exit : (stacksz : std.size -> void) NOTE: must be called from the bottom of the stack, since we assume that %rbp is in the top 4k of the stack. */ .globl thread$exit thread$exit: /* find top of stack */ movq %rbp,%rdi /* addr */ andq $~0xfff,%rdi /* align it */ addq $0x1000,%rdi /* Because OpenBSD wants a valid stack whenever we enter the kernel, we need to toss a preallocated stack pointer into %rsp. */ movq thread$exitstk,%rsp /* munmap(base, size) */ movq $73,%rax /* munmap */ movq -8(%rdi),%rsi /* size */ subq %rsi,%rdi /* move to base ptr */ syscall /* __threxit(0) */ movq $302,%rax /* exit */ xorq %rdi,%rdi /* 0 */ syscall