mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
LibC: Declare pthread_sigmask() in signal.h.
That's where it's supposed to be declared.
This commit is contained in:
parent
0799835e15
commit
d81ac80aba
1 changed files with 1 additions and 0 deletions
|
@ -64,6 +64,7 @@ struct sigaction {
|
|||
int kill(pid_t, int sig);
|
||||
int killpg(int pgrp, int sig);
|
||||
sighandler_t signal(int sig, sighandler_t);
|
||||
int pthread_sigmask(int how, const sigset_t *set, sigset_t *ol_dset);
|
||||
int sigaction(int sig, const struct sigaction* act, struct sigaction* old_act);
|
||||
int sigemptyset(sigset_t*);
|
||||
int sigfillset(sigset_t*);
|
||||
|
|
Loading…
Add table
Reference in a new issue