1
0
mirror of https://sourceware.org/git/glibc.git synced 2026-01-06 11:51:29 +03:00

Relocate hppa from ports to libc.

This commit is contained in:
Carlos O'Donell
2014-04-29 03:08:48 -04:00
parent 4e4a58f4ee
commit 5abebba403
152 changed files with 41 additions and 61 deletions

View File

@@ -0,0 +1,18 @@
/* We have a separate header file here because we do not support
SA_RESTORER on hppa. */
/* This is the sigaction struction from the Linux 2.1.20 kernel. */
/* Blah. This is bogus. We don't ever use it. */
struct old_kernel_sigaction {
__sighandler_t k_sa_handler;
unsigned long sa_mask;
unsigned long sa_flags;
};
/* This is the sigaction structure from the Linux 2.1.68 kernel. */
struct kernel_sigaction {
__sighandler_t k_sa_handler;
unsigned long sa_flags;
sigset_t sa_mask;
};