diff options
Diffstat (limited to 'pkg/sentry/mm/mm_state_autogen.go')
-rwxr-xr-x | pkg/sentry/mm/mm_state_autogen.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/sentry/mm/mm_state_autogen.go b/pkg/sentry/mm/mm_state_autogen.go index b9d81cf0b..ef95c2836 100755 --- a/pkg/sentry/mm/mm_state_autogen.go +++ b/pkg/sentry/mm/mm_state_autogen.go @@ -167,6 +167,7 @@ func (x *MemoryManager) save(m state.Map) { m.Save("executable", &x.executable) m.Save("dumpability", &x.dumpability) m.Save("aioManager", &x.aioManager) + m.Save("sleepForActivation", &x.sleepForActivation) } func (x *MemoryManager) load(m state.Map) { @@ -190,6 +191,7 @@ func (x *MemoryManager) load(m state.Map) { m.Load("executable", &x.executable) m.Load("dumpability", &x.dumpability) m.Load("aioManager", &x.aioManager) + m.Load("sleepForActivation", &x.sleepForActivation) m.AfterLoad(x.afterLoad) } |