1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:37:35 +00:00

LibPthread: Add pthread_equal()

This commit is contained in:
Andreas Kling 2021-01-12 13:42:45 +01:00
parent bee1145bdf
commit f2a6ee76c0
2 changed files with 7 additions and 0 deletions

View file

@ -125,4 +125,6 @@ int pthread_mutexattr_destroy(pthread_mutexattr_t*);
int pthread_setname_np(pthread_t, const char*);
int pthread_getname_np(pthread_t, char*, size_t);
int pthread_equal(pthread_t t1, pthread_t t2);
__END_DECLS