blob: 32d2350f42eda29f9bd5a0c2a8438f1b97837016 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// automatically generated by stateify.
// +build go1.9
// +build !go1.15
package tcpip
import (
"gvisor.dev/gvisor/pkg/state"
)
func (x *StdClock) beforeSave() {}
func (x *StdClock) save(m state.Map) {
x.beforeSave()
}
func (x *StdClock) afterLoad() {}
func (x *StdClock) load(m state.Map) {
}
func init() {
state.Register("pkg/tcpip.StdClock", (*StdClock)(nil), state.Fns{Save: (*StdClock).save, Load: (*StdClock).load})
}
|