diff options
Diffstat (limited to 'libc/bionic/pthread_exit.cpp')
-rw-r--r-- | libc/bionic/pthread_exit.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/libc/bionic/pthread_exit.cpp b/libc/bionic/pthread_exit.cpp index de818cd..2470c9c 100644 --- a/libc/bionic/pthread_exit.cpp +++ b/libc/bionic/pthread_exit.cpp @@ -34,8 +34,8 @@ #include "pthread_internal.h" -extern "C" void _exit_with_stack_teardown(void*, size_t); -extern "C" void __exit(int); +extern "C" __noreturn void _exit_with_stack_teardown(void*, size_t); +extern "C" __noreturn void __exit(int); extern "C" int __set_tid_address(int*); /* CAVEAT: our implementation of pthread_cleanup_push/pop doesn't support C++ exceptions @@ -127,7 +127,4 @@ void pthread_exit(void* return_value) { _exit_with_stack_teardown(stack_base, stack_size); } - - // NOTREACHED, but we told the compiler this function is noreturn, and it doesn't believe us. - abort(); } |