summaryrefslogtreecommitdiff
path: root/src/linux/sh64/rt_sigframe.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/linux/sh64/rt_sigframe.h')
-rw-r--r--src/linux/sh64/rt_sigframe.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/linux/sh64/rt_sigframe.h b/src/linux/sh64/rt_sigframe.h
new file mode 100644
index 000000000..493948f8c
--- /dev/null
+++ b/src/linux/sh64/rt_sigframe.h
@@ -0,0 +1,21 @@
+/*
+ * Copyright (c) 2017-2018 Dmitry V. Levin <ldv@strace.io>
+ * All rights reserved.
+ *
+ * SPDX-License-Identifier: LGPL-2.1-or-later
+ */
+
+#ifndef STRACE_RT_SIGFRAME_H
+# define STRACE_RT_SIGFRAME_H
+
+# include <signal.h>
+
+typedef struct {
+ siginfo_t *pinfo;
+ void *puc;
+ siginfo_t info;
+ ucontext_t uc;
+ /* more data follows */
+} struct_rt_sigframe;
+
+#endif /* !STRACE_RT_SIGFRAME_H */