ladybird/Userland/Libraries/LibPthread
Lenny Maiorani f912a48315 Userland: Change static const variables to static constexpr
`static const` variables can be computed and initialized at run-time
during initialization or the first time a function is called. Change
them to `static constexpr` to ensure they are computed at
compile-time.

This allows some removal of `strlen` because the length of the
`StringView` can be used which is pre-computed at compile-time.
2022-03-18 19:58:57 +01:00
..
CMakeLists.txt LibPthread: Reimplement condition variables 2021-07-05 20:26:01 +02:00
forward.cpp Userland: Change static const variables to static constexpr 2022-03-18 19:58:57 +01:00
pthread_cond.cpp LibPthread: Validate the clock argument in pthread_condattr_setclock 2022-01-09 11:15:06 +03:30
pthread_once.cpp LibPthread: Add POSIX spec links for pthread_once API 2022-01-07 01:18:57 -08:00
pthread.cpp Revert "LibPthread: Partially implement pthread_cleanup_(push pop)" 2022-03-11 04:12:21 +03:30
pthread.h LibPthread: Add PTHREAD_CANCELED 2022-02-12 12:16:59 +01:00
semaphore.cpp LibPthread: Add POSIX spec links for semaphore APIs 2022-01-07 01:18:57 -08:00
semaphore.h LibPthread: Define SEM_FAILED in semaphore.h 2022-03-16 18:03:52 +00:00