1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +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

@@ -36,4 +36,4 @@ extern void __default_rt_sa_restorer (void);
#define RESET_SA_RESTORER(act, kact) \
(act)->sa_restorer = (kact)->sa_restorer;
#include <sysdeps/unix/sysv/linux/sigaction.c>
#include <sysdeps/unix/sysv/linux/libc_sigaction.c>