1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 09:24:57 +00:00

LibC: Remove a bunch of weak pthread_* symbols

This commit is contained in:
Tim Schumacher 2022-07-19 17:23:18 +02:00 committed by Brian Gianforcaro
parent cf4b7e343a
commit 224ac1a307
8 changed files with 67 additions and 137 deletions

View file

@ -534,12 +534,12 @@ bool FILE::Buffer::enqueue_front(u8 byte)
void FILE::lock()
{
__pthread_mutex_lock(&m_mutex);
pthread_mutex_lock(&m_mutex);
}
void FILE::unlock()
{
__pthread_mutex_unlock(&m_mutex);
pthread_mutex_unlock(&m_mutex);
}
extern "C" {