1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-07 06:43:00 +03:00

signal: Add __libc_sigaction

The generic implementation basically handle the system agnostic logic
(filtering out the invalid signals) while the __libc_sigaction is
the function with implements the system and architecture bits.

Checked on x86_64-linux-gnu and i686-linux-gnu.
This commit is contained in:
Adhemerval Zanella
2021-03-15 15:23:40 -03:00
parent d5ddd583da
commit a894053318
14 changed files with 48 additions and 23 deletions

View File

@@ -34,4 +34,4 @@ void __sigreturn_stub (void);
: 0, \
(sigsetsize)
#include <sysdeps/unix/sysv/linux/sigaction.c>
#include <sysdeps/unix/sysv/linux/libc_sigaction.c>

View File

@@ -29,4 +29,4 @@ void __rt_sigreturn_stub (void);
(((unsigned long) &__rt_sigreturn_stub) - 8), \
(sigsetsize)
#include <sysdeps/unix/sysv/linux/sigaction.c>
#include <sysdeps/unix/sysv/linux/libc_sigaction.c>