Searched defs:sig (Results 1 - 25 of 95) sorted by relevance

1234

/arch/x86/um/
H A Dbugs_64.c13 void arch_examine_signal(int sig, struct uml_pt_regs *regs) argument
H A Dstub_segv.c11 stub_segv_handler(int sig, siginfo_t *info, void *p) argument
H A Dbugs_32.c16 static void cmov_sigill_test_handler(int sig) argument
44 void arch_examine_signal(int sig, struct uml_pt_regs *regs) argument
52 if ((sig != SIGILL) || (get_current_pid() != 1))
/arch/ia64/include/asm/
H A Dsignal.h26 unsigned long sig[_NSIG_WORDS]; member in struct:__anon1575
/arch/mips/math-emu/
H A Ddp_cmp.c24 int ieee754dp_cmp(union ieee754dp x, union ieee754dp y, int cmp, int sig) argument
39 if (sig || xc == IEEE754_CLASS_SNAN || yc == IEEE754_CLASS_SNAN)
44 if (sig && ieee754_setandtestcx(IEEE754_INVALID_OPERATION))
H A Dsp_cmp.c24 int ieee754sp_cmp(union ieee754sp x, union ieee754sp y, int cmp, int sig) argument
39 if (sig || xc == IEEE754_CLASS_SNAN || yc == IEEE754_CLASS_SNAN)
44 if (sig && ieee754_setandtestcx(IEEE754_INVALID_OPERATION))
/arch/arm/include/asm/
H A Dsignal.h16 unsigned long sig[_NSIG_WORDS]; member in struct:__anon176
/arch/avr32/include/asm/
H A Dsignal.h23 unsigned long sig[_NSIG_WORDS]; member in struct:__anon350
/arch/cris/include/asm/
H A Dsignal.h16 unsigned long sig[_NSIG_WORDS]; member in struct:__anon1402
/arch/m32r/include/asm/
H A Dsignal.h16 unsigned long sig[_NSIG_WORDS]; member in struct:__anon1845
/arch/mn10300/include/asm/
H A Dsignal.h26 unsigned long sig[_NSIG_WORDS]; member in struct:__anon2242
/arch/s390/include/asm/
H A Dsignal.h21 unsigned long sig[_NSIG_WORDS]; member in struct:__anon2538
/arch/alpha/include/asm/
H A Dsignal.h16 unsigned long sig[_NSIG_WORDS]; member in struct:__anon72
/arch/mn10300/kernel/
H A Dsigframe.h15 int sig; member in struct:sigframe
26 int sig; member in struct:rt_sigframe
/arch/parisc/include/asm/
H A Dsignal.h20 unsigned long sig[_NSIG_WORDS]; member in struct:__anon2274
/arch/m68k/include/asm/
H A Dsignal.h16 unsigned long sig[_NSIG_WORDS]; member in struct:__anon1910
44 unsigned long sig = _sig - 1; local
45 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW));
58 #define sigismember(set,sig) \
59 (__builtin_constant_p(sig) ? \
60 __const_sigismember(set,sig) : \
61 __gen_sigismember(set,sig))
/arch/microblaze/mm/
H A Dfault.c67 void bad_page_fault(struct pt_regs *regs, unsigned long address, int sig) argument
79 die("kernel access of bad area", regs, sig);
/arch/um/os-Linux/
H A Dutil.c85 sigset_t sig; local
89 if (!sigemptyset(&sig) && !sigaddset(&sig, SIGABRT))
90 sigprocmask(SIG_UNBLOCK, &sig, 0);
/arch/x86/include/asm/
H A Dsigframe.h25 int sig; member in struct:sigframe_ia32
47 int sig; member in struct:rt_sigframe_ia32
H A Dsignal.h23 unsigned long sig[_NSIG_WORDS]; member in struct:__anon3149
43 #define sigaddset(set,sig) \
44 (__builtin_constant_p(sig) \
45 ? __const_sigaddset((set), (sig)) \
46 : __gen_sigaddset((set), (sig)))
55 unsigned long sig = _sig - 1; local
56 set->sig[sig / _NSIG_BPW] |= 1 << (sig % _NSIG_BPW);
59 #define sigdelset(set, sig) \
72 unsigned long sig = _sig - 1; local
78 unsigned long sig = _sig - 1; local
[all...]
/arch/x86/um/os-Linux/
H A Dtask_size.c11 static void segfault(int sig) argument
/arch/blackfin/kernel/
H A Dtraps.c27 kgdb_handle_exception(trapnr, sig, info.si_code, fp); \
78 int sig = 0; local
114 sig = SIGTRAP;
124 sig = SIGSEGV;
132 sig = SIGTRAP;
153 sig = SIGILL;
160 sig = SIGTRAP;
170 sig = SIGTRAP;
222 sig = SIGILL;
229 sig
[all...]
/arch/mips/kernel/
H A Dsignal_n32.c72 int sig; local
82 sig = restore_sigcontext(&regs, &frame->rs_uc.uc_mcontext);
83 if (sig < 0)
85 else if (sig)
86 force_sig(sig, current);
138 regs->regs[ 4] = ksig->sig;
/arch/mips/sgi-ip22/
H A Dip22-eisa.c54 u8 sig[4]; local
59 sig[i] = inb(addr + i);
61 if (!i && (sig[0] & 0x80))
65 sig_str[0] = ((sig[0] >> 2) & 0x1f) + ('A' - 1);
66 sig_str[1] = (((sig[0] & 3) << 3) | (sig[1] >> 5)) + ('A' - 1);
67 sig_str[2] = (sig[1] & 0x1f) + ('A' - 1);
68 rev = (sig[2] << 8) | sig[3];
/arch/um/kernel/
H A Dtime.c16 void timer_handler(int sig, struct siginfo *unused_si, struct uml_pt_regs *regs) argument

Completed in 384 milliseconds

1234