blob: bae449d97469aa2b2b1ac8a3e189b0357bd93ff2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// automatically generated by stateify.
package timerfd
import (
"gvisor.googlesource.com/gvisor/pkg/state"
)
func (x *TimerOperations) beforeSave() {}
func (x *TimerOperations) save(m state.Map) {
x.beforeSave()
if !state.IsZeroValue(x.events) { m.Failf("events is %v, expected zero", x.events) }
m.Save("timer", &x.timer)
m.Save("val", &x.val)
}
func (x *TimerOperations) afterLoad() {}
func (x *TimerOperations) load(m state.Map) {
m.Load("timer", &x.timer)
m.Load("val", &x.val)
}
func init() {
state.Register("timerfd.TimerOperations", (*TimerOperations)(nil), state.Fns{Save: (*TimerOperations).save, Load: (*TimerOperations).load})
}
|