Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2/*
3 * Copyright (C) 2006 Atmark Techno, Inc.
4 *
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file "COPYING" in the main directory of this archive
7 * for more details.
8 */
9
10#ifndef _ASM_MICROBLAZE_SIGCONTEXT_H
11#define _ASM_MICROBLAZE_SIGCONTEXT_H
12
13/* FIXME should be linux/ptrace.h */
14#include <asm/ptrace.h>
15
16struct sigcontext {
17 struct pt_regs regs;
18 unsigned long oldmask;
19};
20
21#endif /* _ASM_MICROBLAZE_SIGCONTEXT_H */