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:
parent
ce4b66e908
commit
1b13d52a87
2 changed files with 3 additions and 3 deletions
|
@ -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*);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue