2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-31 14:25:49 +00:00

restore: Change rt_sigcontext::fpstate to void *

It will be carrying xsave or fxsave frame.

Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
Cyrill Gorcunov
2012-12-21 17:35:41 +04:00
committed by Pavel Emelyanov
parent c1f7ab2150
commit 10f22fe9ee

View File

@@ -10,6 +10,7 @@
#include "lock.h"
#include "util.h"
#include "crtools.h"
#include "fpu.h"
#include "../protobuf/mm.pb-c.h"
#include "../protobuf/vma.pb-c.h"
@@ -174,7 +175,7 @@ struct rt_sigcontext {
unsigned long trapno;
unsigned long oldmask;
unsigned long cr2;
struct user_fpregs_entry *fpstate;
void *fpstate;;
unsigned long reserved1[8];
};