f2f4bf5aab
Convert files to use SPDX header. All files are licensed under the GPLv2. Signed-off-by: Alex Dewar <alex.dewar@gmx.co.uk> Signed-off-by: Richard Weinberger <richard@nod.at>
16 lines
363 B
C
16 lines
363 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
|
*/
|
|
|
|
#ifndef __ARCH_H__
|
|
#define __ARCH_H__
|
|
|
|
#include <sysdep/ptrace.h>
|
|
|
|
extern void arch_check_bugs(void);
|
|
extern int arch_fixup(unsigned long address, struct uml_pt_regs *regs);
|
|
extern void arch_examine_signal(int sig, struct uml_pt_regs *regs);
|
|
|
|
#endif
|