You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently llvm-libc's actual OS-specific exit code is implemented as quick_exit, and _Exit and _exit call that. This is backwards. _Exit (C11 name) and _exit (POSIX name) are the underlying OS-specific thing (in Unix, the system call). quick_exit is the new C11 function that runs at_quick_exit hooks and then calls _Exit.