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

LibC: Make 'attributes' parameter for pthread_create const

This commit is contained in:
Gunnar Beutner 2022-10-23 10:38:05 +02:00 committed by Linus Groh
parent ce4b66e908
commit 1b13d52a87
2 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@
__BEGIN_DECLS
int pthread_create(pthread_t*, pthread_attr_t*, void* (*)(void*), void*);
int pthread_create(pthread_t*, pthread_attr_t const*, void* (*)(void*), void*);
void pthread_exit(void*) __attribute__((noreturn));
int pthread_kill(pthread_t, int);
void pthread_cleanup_push(void (*)(void*), void*);