blob: 51bfbff8a2f94121fbd310f23a5b8d54a5709f19 [file] [log] [blame]
// automatically generated by stateify.
package buffer
import (
"gvisor.dev/gvisor/pkg/state"
)
func (vv *VectorisedView) StateTypeName() string {
return "pkg/tcpip/buffer.VectorisedView"
}
func (vv *VectorisedView) StateFields() []string {
return []string{
"views",
"size",
}
}
func (vv *VectorisedView) beforeSave() {}
// +checklocksignore
func (vv *VectorisedView) StateSave(stateSinkObject state.Sink) {
vv.beforeSave()
stateSinkObject.Save(0, &vv.views)
stateSinkObject.Save(1, &vv.size)
}
func (vv *VectorisedView) afterLoad() {}
// +checklocksignore
func (vv *VectorisedView) StateLoad(stateSourceObject state.Source) {
stateSourceObject.Load(0, &vv.views)
stateSourceObject.Load(1, &vv.size)
}
func init() {
state.Register((*VectorisedView)(nil))
}