summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibPthread
AgeCommit message (Expand)Author
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-18Userland: Change static const variables to static constexprLenny Maiorani
2022-03-16LibPthread: Define SEM_FAILED in semaphore.hLinus Groh
2022-03-11Revert "LibPthread: Partially implement pthread_cleanup_(push pop)"Ali Mohammad Pur
2022-03-08LibPthread: Partially implement pthread_cleanup_(push pop)Ali Mohammad Pur
2022-02-12LibPthread: Add PTHREAD_CANCELEDAli Mohammad Pur
2022-01-11AK+LibC+LibPthread: Introduce NoAllocationGuardkleines Filmröllchen
2022-01-09LibPthread: Validate the clock argument in pthread_condattr_setclockBrian Gianforcaro
2022-01-09LibPthread: Implement pthread_condattr_getclockBrian Gianforcaro
2022-01-07LibPthread: Remove bad spec link for pthread_{get/set}name_np APIsBrian Gianforcaro
2022-01-07LibPthread: Add POSIX spec link for pthread_sigmask APIBrian Gianforcaro
2022-01-07LibPthread: Add POSIX spec links for pthread_once APIBrian Gianforcaro
2022-01-07LibPthread: Add POSIX spec links for pthread_cond APIBrian Gianforcaro
2022-01-07LibPthread: Add POSIX spec links for semaphore APIsBrian Gianforcaro
2021-12-21LibPthread: Add POSIX spec comments to our implementationsBrian Gianforcaro
2021-11-24LibPthread: Initialize conditions with realtime clockJelle Raaijmakers
2021-09-28LibPthread: Correct nonsensical loop exit condition in RWLock unlockAli Mohammad Pur
2021-09-28LibPthread: Calculate the correct lock value in RWLock {rd,un}lockAli Mohammad Pur
2021-08-17Kernel+Userland: Remove global futexesAndreas Kling
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