mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00:00
LibC: Remove a bunch of weak pthread_*
symbols
This commit is contained in:
parent
cf4b7e343a
commit
224ac1a307
Notes:
sideshowbarker
2024-07-17 08:55:54 +09:00
Author: https://github.com/timschumi
Commit: 224ac1a307
Pull-request: https://github.com/SerenityOS/serenity/pull/14625
Reviewed-by: https://github.com/bgianfo ✅
8 changed files with 67 additions and 137 deletions
|
@ -10,6 +10,7 @@
|
|||
#include <LibC/bits/FILE.h>
|
||||
#include <LibC/bits/pthread_integration.h>
|
||||
#include <LibC/bits/wchar.h>
|
||||
#include <pthread.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
#pragma once
|
||||
|
@ -21,7 +22,7 @@ public:
|
|||
, m_mode(mode)
|
||||
{
|
||||
pthread_mutexattr_t attr = { __PTHREAD_MUTEX_RECURSIVE };
|
||||
__pthread_mutex_init(&m_mutex, &attr);
|
||||
pthread_mutex_init(&m_mutex, &attr);
|
||||
}
|
||||
~FILE();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue