diff options
Diffstat (limited to 'UnixPkg/Sec/Gasket.c')
-rw-r--r-- | UnixPkg/Sec/Gasket.c | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/UnixPkg/Sec/Gasket.c b/UnixPkg/Sec/Gasket.c index 3d5db3b795..7df5fbbb54 100644 --- a/UnixPkg/Sec/Gasket.c +++ b/UnixPkg/Sec/Gasket.c @@ -314,40 +314,6 @@ Gaskettcsetattr (int __fd, int __optional_actions, __const struct termios *__ter }
-int
-Gasketsigaction (int sig, const struct sigaction *act, struct sigaction *oact)
-{
- return GasketUintnUintn (sigaction, (UINTN)act, (UINTN)oact);
-}
-
-
-int
-Gasketsetcontext (const ucontext_t *ucp)
-{
- return GasketUintn (setcontext, (UINTN)ucp);
-}
-
-
-int
-Gasketgetcontext (ucontext_t *ucp)
-{
- return GasketUintn (getcontext, (UINTN)ucp);
-}
-
-
-int
-Gasketsigemptyset (sigset_t *set)
-{
- return GasketUintn (sigemptyset, (UINTN)set);
-}
-
-
-int
-Gasketsigaltstack (const stack_t *ss, stack_t *oss)
-{
- return GasketUintnUintn (sigaltstack, (UINTN)ss, (UINTN)oss);
-}
-
RETURN_STATUS
|