Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/microblaze/include/uapi/asm/sigcontext.h
26498 views
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
16
struct sigcontext {
17
struct pt_regs regs;
18
unsigned long oldmask;
19
};
20
21
#endif /* _ASM_MICROBLAZE_SIGCONTEXT_H */
22
23