Path: blob/master/arch/nios2/include/uapi/asm/sigcontext.h
26481 views
/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */1/*2* Copyright (C) 2004, Microtronix Datacom Ltd.3*4* All rights reserved.5*6* This program is free software; you can redistribute it and/or modify7* it under the terms of the GNU General Public License as published by8* the Free Software Foundation; either version 2 of the License, or9* (at your option) any later version.10*11* This program is distributed in the hope that it will be useful, but12* WITHOUT ANY WARRANTY; without even the implied warranty of13* MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or14* NON INFRINGEMENT. See the GNU General Public License for more15* details.16*/1718#ifndef _UAPI__ASM_SIGCONTEXT_H19#define _UAPI__ASM_SIGCONTEXT_H2021#include <linux/types.h>2223#define MCONTEXT_VERSION 22425struct sigcontext {26int version;27unsigned long gregs[32];28};2930#endif313233