Tkhai Kirill | bdde6b3 | 2013-03-19 15:11:07 +0000 | [diff] [blame] | 1 | /* |
2 | * hibernate.h: Hibernaton support specific for sparc64. | ||||
3 | * | ||||
4 | * Copyright (C) 2013 Kirill V Tkhai (tkhai@yandex.ru) | ||||
5 | */ | ||||
6 | |||||
7 | #ifndef ___SPARC_HIBERNATE_H | ||||
8 | #define ___SPARC_HIBERNATE_H | ||||
9 | |||||
10 | struct saved_context { | ||||
11 | unsigned long fp; | ||||
12 | unsigned long cwp; | ||||
13 | unsigned long wstate; | ||||
14 | |||||
15 | unsigned long tick; | ||||
16 | unsigned long pstate; | ||||
17 | |||||
18 | unsigned long g4; | ||||
19 | unsigned long g5; | ||||
20 | unsigned long g6; | ||||
21 | }; | ||||
22 | |||||
23 | #endif |