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