mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 20:42:56 +01: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:
committed by
Christian Helmuth
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")));
|
||||
|
||||
|
||||
/*********************
|
||||
|
||||
Reference in New Issue
Block a user