blob: 05effb7b6f79035562922ac24414950c486bd0df (
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.googlesource.com/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})
}
|