1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:57:43 +00:00

LibPthread: Add stubs for pthread_spin_* functions

The stress-ng port depends on these now that it detects we have
thread support.
This commit is contained in:
Gunnar Beutner 2021-04-19 15:48:47 +02:00 committed by Andreas Kling
parent 88cebb05ad
commit 2520ccfca4
2 changed files with 28 additions and 0 deletions

View file

@ -580,6 +580,31 @@ int pthread_setcanceltype([[maybe_unused]] int type, [[maybe_unused]] int* oldty
TODO();
}
int pthread_spin_destroy([[maybe_unused]] pthread_spinlock_t* lock)
{
TODO();
}
int pthread_spin_init([[maybe_unused]] pthread_spinlock_t* lock, [[maybe_unused]] int shared)
{
TODO();
}
int pthread_spin_lock([[maybe_unused]] pthread_spinlock_t* lock)
{
TODO();
}
int pthread_spin_trylock([[maybe_unused]] pthread_spinlock_t* lock)
{
TODO();
}
int pthread_spin_unlock([[maybe_unused]] pthread_spinlock_t* lock)
{
TODO();
}
int pthread_equal(pthread_t t1, pthread_t t2)
{
return t1 == t2;