mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-31 08:25:38 +00:00
libc_noux: override __libc_sigaction
This is a follow-up commit to the libc update. The FreeBSD implementation of sigset or sigaction calls the __libc_sigaction now. The patch fixes the SIGWINCH handling for Vim when interactively resizing the terminal window. Fixes #3424
This commit is contained in:
parent
52ec4526e1
commit
d1da5b9e16
@ -936,7 +936,8 @@ extern "C" int _sigaction(int signum, const struct sigaction *act, struct sigact
|
||||
}
|
||||
|
||||
|
||||
extern "C" int sigaction(int signum, const struct sigaction *act, struct sigaction *oldact) __attribute__((alias("_sigaction")));
|
||||
extern "C" int sigaction(int, const struct sigaction *, struct sigaction *) __attribute__((alias("_sigaction")));
|
||||
extern "C" int __libc_sigaction(int, const struct sigaction *, struct sigaction *) __attribute__((alias("_sigaction")));
|
||||
|
||||
|
||||
/*********************
|
||||
|
Loading…
x
Reference in New Issue
Block a user