mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 17:20:56 +07:00
307627eebb
Use the more generic functions get_signal() signal_setup_done() for signal delivery. Signed-off-by: Richard Weinberger <richard@nod.at>
16 lines
392 B
C
16 lines
392 B
C
/*
|
|
* Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
|
|
* Licensed under the GPL
|
|
*/
|
|
|
|
#ifndef __FRAME_KERN_H_
|
|
#define __FRAME_KERN_H_
|
|
|
|
extern int setup_signal_stack_sc(unsigned long stack_top, struct ksignal *ksig,
|
|
struct pt_regs *regs, sigset_t *mask);
|
|
extern int setup_signal_stack_si(unsigned long stack_top, struct ksignal *ksig,
|
|
struct pt_regs *regs, sigset_t *mask);
|
|
|
|
#endif
|
|
|