ref: 537313ee9a2179cc6e869c6e8c70da4af1f07f28
dir: /lib/thread/exit+linux-x64.s/
/* const thread.exit : (-> void) */ .globl thread$exit thread$exit: /* munmap(base, size) */ movq $11,%rax /* munmap */ movq %fs:0x08,%rdi /* base */ movq %fs:0x10,%rsi /* stksz */ syscall /* thread_exit(0) */ movq $60,%rax /* exit */ xorq %rdi,%rdi /* 0 */ syscall