summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibPthread
AgeCommit message (Expand)Author
2021-07-09LibPthread+Kernel: Add pthread_kill() and the thread_kill syscallAli Mohammad Pur
2021-07-07LibC+LibPthread: Use FUTEX_PRIVATE_FLAG in more placesSergey Bugaev
2021-07-06LibPthread: Fix some assertionsSergey Bugaev
2021-07-06LibPthread: Fix orderingSergey Bugaev
2021-07-05LibC+LibPthread: Add PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NPAndreas Kling
2021-07-05LibPthread: Reimplement semaphoresSergey Bugaev
2021-07-05LibPthread: Reimplement condition variablesSergey Bugaev
2021-07-05LibC: Add futex_wait() and futex_wake() helpersSergey Bugaev
2021-07-04Toolchain+Userland: Enable TLS for x86_64Gunnar Beutner
2021-07-01Kernel+LibPthread: Add support for usermode threads on x86_64Gunnar Beutner
2021-07-01Kernel+LibPthread: Remove m_ prefix for public membersGunnar Beutner
2021-06-30Kernel: Disable __thread and TLS on x86_64 for nowGunnar Beutner
2021-06-30LibPthread: Remove redundant return statementGunnar Beutner
2021-06-24Userland: Add more TODO()s for arch-specific codeGunnar Beutner
2021-06-01LibPthread: Correct error check in `sem_post` and `sem_wait`Jelle Raaijmakers
2021-05-29Kernel: Make sure we free the thread stack on thread exitGunnar Beutner
2021-05-29LibPthread: Make some variables staticGunnar Beutner
2021-05-21Revert "Userland: static vs non-static constexpr variables"Linus Groh
2021-05-21Userland: static vs non-static constexpr variablesLenny Maiorani
2021-05-17Everywhere: Fix a bunch of typosLinus Groh
2021-05-14LibC: Do not include errno.h inside unistd.hJean-Baptiste Boric
2021-05-10LibC: Partially implement pthread_setcancel{state,type}()Gunnar Beutner
2021-05-08LibPthread: Add implementation for pthread_mutexattr_gettypeGunnar Beutner
2021-05-02LibPthread: Implement pthread_spinlock_t API.Brian Gianforcaro
2021-04-27LibPthread: Use realtime clock for futex_wait()Jelle Raaijmakers
2021-04-25LibC: Move the __pthread_mutex_trylock function to LibCGunnar Beutner
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-21LibPthread: Add non functional pthread_attr_[set|get]scope stubsBrian Gianforcaro
2021-04-20LibPthread: Add stubs for pthread_spin_* functionsGunnar Beutner
2021-04-20LibC+LibPthread: Implement function forwarding for libpthreadGunnar Beutner
2021-04-19Pthread: Add stubs for pthread_cleanup_{push,pop}Gunnar Beutner
2021-04-18LibC+LibPthread: Make sure TLS keys are destroyed after everything elseGunnar Beutner
2021-04-15LibPthread: Implement sem_getvalue()Gunnar Beutner
2021-04-15LibPthread: Don't hold sem->mtx after sem_wait()/sem_trywait()Gunnar Beutner
2021-04-15LibPthread: Improve error handling for the semaphore functionsGunnar Beutner
2021-04-15LibPthread: Ensure we're not overflowing the semaphore's valueGunnar Beutner
2021-04-14LibPthread: Implement semaphore functionsGunnar Beutner
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-02-17LibPthread: Convert dbgprintf() => dbgln_if()Andreas Kling
2021-02-15LibC+LibPthread: Permit partial pthread_atforkBen Wiederhake
2021-02-15LibC+LibPthread: Implement pthread_atfork()AnotherTest
2021-02-15LibC+LibPthread: Implement pthread_rwlock_*AnotherTest
2021-02-15LibPthread: Stub out `pthread_atfork()`AnotherTest
2021-02-15LibC+LibPthread: Stub out pthread_rwlock_* functionsAnotherTest
2021-02-05Userland: Add LibSystem and funnel all syscalls through itAndreas Kling
2021-01-25Everywhere: Hook up remaining debug macros to Debug.h.asynts
2021-01-25Everywhere: Remove unnecessary debug comments.asynts
2021-01-22LibPthread: Fix asserting futex return valueTom
2021-01-17Kernel: Some futex improvementsTom
2021-01-12LibPthread: Add pthread_equal()Andreas Kling