ladybird/Libraries/LibPthread
Drew Stratford 4a37362249 LibPthread: implicitly call pthread_exit on return from start routine.
Previously, when returning from a pthread's start_routine, we would
segfault. Now we instead implicitly call pthread_exit as specified in
the standard.

pthread_create now creates a thread running the new
pthread_create_helper, which properly manages the calling and exiting
of the start_routine supplied to pthread_create. To accomplish this,
the thread's stack initialization has been moved out of
sys$create_thread and into the userspace function create_thread.
2020-04-25 16:51:35 +02:00
..
Makefile LibPthread: Install immediately after building 2020-02-06 14:29:07 +01:00
pthread.cpp LibPthread: implicitly call pthread_exit on return from start routine. 2020-04-25 16:51:35 +02:00
pthread.h Meta: Add license header to source files 2020-01-18 09:45:54 +01:00