/******************************************************************************* Copyright(C) Jonas 'Sortie' Termansen 2013, 2014. This file is part of Sortix libpthread. Sortix libpthread is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Sortix libpthread is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with Sortix libpthread. If not, see . pthread_exit.c++ Exits the current thread. *******************************************************************************/ #include #include #include #include #include extern "C" __attribute__((__noreturn__)) void pthread_exit(void* /*return_value*/) { struct pthread* thread = pthread_self(); pthread_mutex_lock(&__pthread_keys_lock); bool keys_left = true; while ( keys_left ) { keys_left = false; for ( pthread_key_t key = 0; key < thread->keys_length; key++ ) { void* key_value = thread->keys[key]; if ( !key_value ) continue; thread->keys[key] = NULL; if ( __pthread_keys[key].destructor ) __pthread_keys[key].destructor(key_value); keys_left = true; } } free(thread->keys); thread->keys = NULL; thread->keys_length = 0; pthread_mutex_unlock(&__pthread_keys_lock); pthread_mutex_lock(&__pthread_num_threads_lock); size_t num_threads = __pthread_num_threads--; pthread_mutex_unlock(&__pthread_num_threads_lock); if ( num_threads == 1 ) exit(0); struct exit_thread extended; memset(&extended, 0, sizeof(extended)); extended.unmap_from = thread->uthread.stack_mmap; extended.unmap_size = thread->uthread.stack_size; exit_thread(0, EXIT_THREAD_UNMAP, &extended); __builtin_unreachable(); }