ladybird/Userland/Libraries/LibThread
Brian Gianforcaro 691b6f69c5 LibThread: Remove LOCKER() macro, as it adds no value
The LOCKER() macro appears to have been added to LibThread as a
userspace analog to the previous LOCKER() macro that existed in
the kernel. The kernel version used the macro to inject __FILE__ and
__LINE__ number into the lock acquisition for debugging. However
AK::SourceLocation was used to remove the need for the macro. So
the kernel version no longer exists. The LOCKER() in LibThread doesn't
appear to actually need to be a macro, using the type directly works
fine, and arguably is more readable as it removes an unnecessary
level of indirection.
2021-05-10 11:57:11 +02:00
..
BackgroundAction.cpp LibThread: Remove LOCKER() macro, as it adds no value 2021-05-10 11:57:11 +02:00
BackgroundAction.h LibThread: Remove LOCKER() macro, as it adds no value 2021-05-10 11:57:11 +02:00
CMakeLists.txt Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
Lock.h LibThread: Remove LOCKER() macro, as it adds no value 2021-05-10 11:57:11 +02:00
Thread.cpp LibThread: Fix int to pointer conversion 2021-04-27 23:06:16 +02:00
Thread.h LibThread: Fix int to pointer conversion 2021-04-27 23:06:16 +02:00