blob: f45d63d9add8b634c7cfa7ca512f43af0a271ae2 (
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
26
27
28
29
30
31
32
|
// automatically generated by stateify.
package uevent
import (
"gvisor.dev/gvisor/pkg/state"
)
func (p *Protocol) StateTypeName() string {
return "pkg/sentry/socket/netlink/uevent.Protocol"
}
func (p *Protocol) StateFields() []string {
return []string{}
}
func (p *Protocol) beforeSave() {}
// +checklocksignore
func (p *Protocol) StateSave(stateSinkObject state.Sink) {
p.beforeSave()
}
func (p *Protocol) afterLoad() {}
// +checklocksignore
func (p *Protocol) StateLoad(stateSourceObject state.Source) {
}
func init() {
state.Register((*Protocol)(nil))
}
|