mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:27:45 +00:00
LibC: Fix typo in signal.h: ol_dset -> old_set
This commit is contained in:
parent
b4e125cf86
commit
cd9e352460
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ struct sigaction {
|
||||||
int kill(pid_t, int sig);
|
int kill(pid_t, int sig);
|
||||||
int killpg(int pgrp, int sig);
|
int killpg(int pgrp, int sig);
|
||||||
sighandler_t signal(int sig, sighandler_t);
|
sighandler_t signal(int sig, sighandler_t);
|
||||||
int pthread_sigmask(int how, const sigset_t* set, sigset_t* ol_dset);
|
int pthread_sigmask(int how, const sigset_t* set, sigset_t* old_set);
|
||||||
int sigaction(int sig, const struct sigaction* act, struct sigaction* old_act);
|
int sigaction(int sig, const struct sigaction* act, struct sigaction* old_act);
|
||||||
int sigemptyset(sigset_t*);
|
int sigemptyset(sigset_t*);
|
||||||
int sigfillset(sigset_t*);
|
int sigfillset(sigset_t*);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue