blob: f946f2ba5a700507a2cb77d09cba76593539d8a1 (
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
33
34
35
36
37
38
39
|
// automatically generated by stateify.
package fdpipe
import (
"gvisor.dev/gvisor/pkg/sentry/fs"
"gvisor.dev/gvisor/pkg/state"
)
func (p *pipeOperations) StateTypeName() string {
return "pkg/sentry/fs/fdpipe.pipeOperations"
}
func (p *pipeOperations) StateFields() []string {
return []string{
"flags",
"opener",
"readAheadBuffer",
}
}
func (p *pipeOperations) StateSave(stateSinkObject state.Sink) {
p.beforeSave()
var flagsValue fs.FileFlags = p.saveFlags()
stateSinkObject.SaveValue(0, flagsValue)
stateSinkObject.Save(1, &p.opener)
stateSinkObject.Save(2, &p.readAheadBuffer)
}
func (p *pipeOperations) StateLoad(stateSourceObject state.Source) {
stateSourceObject.LoadWait(1, &p.opener)
stateSourceObject.Load(2, &p.readAheadBuffer)
stateSourceObject.LoadValue(0, new(fs.FileFlags), func(y interface{}) { p.loadFlags(y.(fs.FileFlags)) })
stateSourceObject.AfterLoad(p.afterLoad)
}
func init() {
state.Register((*pipeOperations)(nil))
}
|