[CRIU] [PATCH 12/44] include/restorer.h: moved machine-independent sigframe structs to the file include/sigframe.h.

Alexander Kartashov alekskartashov at parallels.com
Mon Jan 7 10:04:41 EST 2013


Signed-off-by: Alexander Kartashov <alekskartashov at parallels.com>
---
 include/restorer.h |   30 +-----------------------------
 include/sigframe.h |   38 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 39 insertions(+), 29 deletions(-)
 create mode 100644 include/sigframe.h

diff --git a/include/restorer.h b/include/restorer.h
index eda9646..07742ba 100644
--- a/include/restorer.h
+++ b/include/restorer.h
@@ -184,35 +184,7 @@ struct rt_sigcontext {
 	unsigned long			reserved1[8];
 };
 
-#ifndef __ARCH_SI_PREAMBLE_SIZE
-#define __ARCH_SI_PREAMBLE_SIZE	(3 * sizeof(int))
-#endif
-
-#define SI_MAX_SIZE	128
-#ifndef SI_PAD_SIZE
-#define SI_PAD_SIZE	((SI_MAX_SIZE - __ARCH_SI_PREAMBLE_SIZE) / sizeof(int))
-#endif
-
-typedef struct rt_siginfo {
-	int	si_signo;
-	int	si_errno;
-	int	si_code;
-	int	_pad[SI_PAD_SIZE];
-} rt_siginfo_t;
-
-typedef struct rt_sigaltstack {
-	void	*ss_sp;
-	int	ss_flags;
-	size_t	ss_size;
-} rt_stack_t;
-
-struct rt_ucontext {
-	unsigned long		uc_flags;
-	struct rt_ucontext	*uc_link;
-	rt_stack_t		uc_stack;
-	struct rt_sigcontext	uc_mcontext;
-	rt_sigset_t		uc_sigmask;	/* mask last for extensibility */
-};
+#include "sigframe.h"
 
 struct rt_sigframe {
 	char			*pretcode;
diff --git a/include/sigframe.h b/include/sigframe.h
new file mode 100644
index 0000000..19c8d6f
--- /dev/null
+++ b/include/sigframe.h
@@ -0,0 +1,38 @@
+#ifndef __CR_SIGFRAME_H__
+#define __CR_SIGFRAME_H__
+
+// Generic sigframe bits
+
+#ifndef __ARCH_SI_PREAMBLE_SIZE
+#define __ARCH_SI_PREAMBLE_SIZE	(3 * sizeof(int))
+#endif
+
+#define SI_MAX_SIZE	128
+#ifndef SI_PAD_SIZE
+#define SI_PAD_SIZE	((SI_MAX_SIZE - __ARCH_SI_PREAMBLE_SIZE) / sizeof(int))
+#endif
+
+typedef struct rt_siginfo {
+	int	si_signo;
+	int	si_errno;
+	int	si_code;
+	int	_pad[SI_PAD_SIZE];
+} rt_siginfo_t;
+
+typedef struct rt_sigaltstack {
+	void	*ss_sp;
+	int	ss_flags;
+	size_t	ss_size;
+} rt_stack_t;
+
+struct rt_ucontext {
+	unsigned long		uc_flags;
+	struct rt_ucontext	*uc_link;
+	rt_stack_t		uc_stack;
+	struct rt_sigcontext	uc_mcontext;
+	rt_sigset_t		uc_sigmask;	/* mask last for extensibility */
+	int                     __unused[32 - (sizeof (rt_sigset_t) / sizeof (int))];
+	unsigned long           uc_regspace[128] __attribute__((__aligned__(8)));
+};
+
+#endif
-- 
1.7.10.4



More information about the CRIU mailing list