Home
last modified time | relevance | path

Searched refs:sh_sigaction (Results 1 – 11 of 11) sorted by relevance

/dports/shells/ksh93/ast-93u/src/cmd/ksh93/features/
H A Dsigfeatures9 # define sh_sigaction(s,action) do { sigset_t ss;\
14 # define sigrelease(s) sh_sigaction(s,SIG_UNBLOCK)
15 # define sigblock(s) sh_sigaction(s,SIG_BLOCK)
16 # define sig_begin() sh_sigaction(0,SIG_SETMASK)
/dports/shells/ksh93-devel/ast-cc1bca27/src/cmd/ksh93/features/
H A Dsigfeatures9 # define sh_sigaction(s,action) do { sigset_t ss;\
14 # define sigrelease(s) sh_sigaction(s,SIG_UNBLOCK)
15 # define sigblock(s) sh_sigaction(s,SIG_BLOCK)
16 # define sig_begin() sh_sigaction(0,SIG_SETMASK)
/dports/shells/ast-ksh/ast-ksh93v/src/cmd/ksh93/features/
H A Dsigfeatures13 # define sh_sigaction(s,action) do { sigset_t ss;\
18 # define sigrelease(s) sh_sigaction(s,SIG_UNBLOCK)
19 # define sigblock(s) sh_sigaction(s,SIG_BLOCK)
20 # define sig_begin() sh_sigaction(0,SIG_SETMASK)
/dports/shells/ksh2020/ast-ksh2020/src/cmd/ksh93/sh/
H A Dfault.c119 sh_sigaction(sig, SIG_UNBLOCK); in sh_fault()
127 sh_sigaction(sig, SIG_UNBLOCK); in sh_fault()
137 sh_sigaction(sig, SIG_UNBLOCK); in sh_fault()
165 sh_sigaction(sig, SIG_UNBLOCK); in sh_fault()
200 sh_sigaction(sig, SIG_UNBLOCK); in sh_fault()
214 sh_sigaction(sig, SIG_UNBLOCK); in sh_fault()
572 sh_sigaction(sig, SIG_UNBLOCK); in sh_done()
773 sh_sigaction(sig, SIG_UNBLOCK); in sh_signal()
H A Dmain.c110 sh_sigaction(SIGALRM, SIG_UNBLOCK); in sh_main()
111 sh_sigaction(SIGCHLD, SIG_UNBLOCK); in sh_main()
112 sh_sigaction(SIGHUP, SIG_UNBLOCK); in sh_main()
H A Dtimers.c101 sh_sigaction(SIGALRM, SIG_UNBLOCK); in sigalrm()
H A Dio.c1953 sh_sigaction(SIGALRM, SIG_UNBLOCK); in time_grace()
/dports/devel/kBuild/kBuild-0.1.9998/src/kash/
H A Dshinstance.c515 int sh_sigaction(shinstance *psh, int signo, const struct shsigaction *newp, struct shsigaction *ol… in sh_sigaction() function
630 if (sh_sigaction(psh, signo, NULL, &sa)) in sh_signal()
638 if (sh_sigaction(psh, signo, &sa, NULL)) in sh_signal()
652 if (sh_sigaction(psh, signo, NULL, &sa)) in sh_siginterrupt()
662 return sh_sigaction(psh, signo, &sa, NULL); in sh_siginterrupt()
H A Dtrap.c327 if (sh_sigaction(psh, signo, NULL, &sa) == -1) in getsigaction()
H A Dshinstance.h393 int sh_sigaction(shinstance *, int, const struct shsigaction *, struct shsigaction *);
/dports/shells/ksh2020/ast-ksh2020/src/cmd/ksh93/include/
H A Ddefs.h435 #define sh_sigaction(s, action) \ macro