Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.5-rc7 19 lines 455 B view raw
1/* 2 * Copyright (C) 2002 Jeff Dike (jdike@karaya.com) 3 * Licensed under the GPL 4 */ 5 6#ifndef __FRAME_KERN_H_ 7#define __FRAME_KERN_H_ 8 9extern int setup_signal_stack_sc(unsigned long stack_top, int sig, 10 struct k_sigaction *ka, 11 struct pt_regs *regs, 12 sigset_t *mask); 13extern int setup_signal_stack_si(unsigned long stack_top, int sig, 14 struct k_sigaction *ka, 15 struct pt_regs *regs, siginfo_t *info, 16 sigset_t *mask); 17 18#endif 19