Kernel: Remove "restorer" field from SignalActionData.

I was originally implementing signals by looking at some man page about
sigaction() to see how it works. It seems like the restorer thingy is
system-specific and not required by POSIX, so let's get rid of it.
This commit is contained in:
Andreas Kling 2019-04-20 19:32:14 +02:00
commit 5f63f8120c
Notes: sideshowbarker 2024-07-19 14:38:10 +09:00
6 changed files with 0 additions and 7 deletions

View file

@ -246,7 +246,6 @@ struct sigaction {
};
sigset_t sa_mask;
int sa_flags;
void (*sa_restorer)(void);
};
#define SA_NOCLDSTOP 1