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:
parent
cf4b7e343a
commit
224ac1a307
8 changed files with 67 additions and 137 deletions
|
@ -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" {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue