abi.h 905 字节
Newer Older
1 2 3 4 5
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
6
 * Copyright (C) 2005, 06 by Ralf Baechle (ralf@linux-mips.org)
7 8 9 10 11 12 13 14 15
 * Copyright (C) 2005 MIPS Technologies, Inc.
 */
#ifndef _ASM_ABI_H
#define _ASM_ABI_H

#include <asm/signal.h>
#include <asm/siginfo.h>

struct mips_abi {
16
	int (* const setup_frame)(void *sig_return, struct k_sigaction *ka,
17 18
	                          struct pt_regs *regs, int signr,
	                          sigset_t *set);
19 20
	const unsigned long	signal_return_offset;
	int (* const setup_rt_frame)(void *sig_return, struct k_sigaction *ka,
21 22
	                       struct pt_regs *regs, int signr,
	                       sigset_t *set, siginfo_t *info);
23
	const unsigned long	rt_signal_return_offset;
24
	const unsigned long	restart;
25 26 27
};

#endif /* _ASM_ABI_H */