162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
262306a36Sopenharmony_ci/*
362306a36Sopenharmony_ci * Copyright (C) 2004, Microtronix Datacom Ltd.
462306a36Sopenharmony_ci *
562306a36Sopenharmony_ci * All rights reserved.
662306a36Sopenharmony_ci *
762306a36Sopenharmony_ci * This program is free software; you can redistribute it and/or modify
862306a36Sopenharmony_ci * it under the terms of the GNU General Public License as published by
962306a36Sopenharmony_ci * the Free Software Foundation; either version 2 of the License, or
1062306a36Sopenharmony_ci * (at your option) any later version.
1162306a36Sopenharmony_ci *
1262306a36Sopenharmony_ci * This program is distributed in the hope that it will be useful, but
1362306a36Sopenharmony_ci * WITHOUT ANY WARRANTY; without even the implied warranty of
1462306a36Sopenharmony_ci * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
1562306a36Sopenharmony_ci * NON INFRINGEMENT.  See the GNU General Public License for more
1662306a36Sopenharmony_ci * details.
1762306a36Sopenharmony_ci */
1862306a36Sopenharmony_ci
1962306a36Sopenharmony_ci#ifndef _UAPI__ASM_SIGCONTEXT_H
2062306a36Sopenharmony_ci#define _UAPI__ASM_SIGCONTEXT_H
2162306a36Sopenharmony_ci
2262306a36Sopenharmony_ci#include <linux/types.h>
2362306a36Sopenharmony_ci
2462306a36Sopenharmony_ci#define MCONTEXT_VERSION 2
2562306a36Sopenharmony_ci
2662306a36Sopenharmony_cistruct sigcontext {
2762306a36Sopenharmony_ci	int version;
2862306a36Sopenharmony_ci	unsigned long gregs[32];
2962306a36Sopenharmony_ci};
3062306a36Sopenharmony_ci
3162306a36Sopenharmony_ci#endif
32