mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-26 03:17:48 +00:00
9a8c135957
Currently we use both struct siginfo and siginfo_t. Let's use struct siginfo internally to avoid ongoing compiler warning. We are allowed to do so because struct siginfo and siginfo_t are equivalent. Signed-off-by: Richard Weinberger <richard@nod.at>
20 lines
456 B
C
20 lines
456 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, int sig,
|
|
struct k_sigaction *ka,
|
|
struct pt_regs *regs,
|
|
sigset_t *mask);
|
|
extern int setup_signal_stack_si(unsigned long stack_top, int sig,
|
|
struct k_sigaction *ka,
|
|
struct pt_regs *regs, struct siginfo *info,
|
|
sigset_t *mask);
|
|
|
|
#endif
|
|
|