]> granicus.if.org Git - strace/blob - linux/tile/rt_sigframe.h
Update copyright headers
[strace] / linux / tile / rt_sigframe.h
1 /*
2  * Copyright (c) 2017-2018 Dmitry V. Levin <ldv@altlinux.org>
3  * All rights reserved.
4  *
5  * SPDX-License-Identifier: LGPL-2.1-or-later
6  */
7
8 #ifndef STRACE_RT_SIGFRAME_H
9 #define STRACE_RT_SIGFRAME_H
10
11 #include <signal.h>
12
13 typedef struct {
14         unsigned char   save_area[C_ABI_SAVE_AREA_SIZE];
15         siginfo_t       info;
16         ucontext_t      uc;
17 } struct_rt_sigframe;
18
19 #endif /* !STRACE_RT_SIGFRAME_H */