...
1
2
3 package uvm
4
5 import "github.com/Microsoft/hcsshim/internal/hcs/schema1"
6
7
8
9
10
11 func (uvm *UtilityVM) SignalProcessSupported() bool {
12 return uvm.guestCaps.SignalProcessSupported
13 }
14
15 func (uvm *UtilityVM) DeleteContainerStateSupported() bool {
16 if uvm.gc == nil {
17 return false
18 }
19 return uvm.guestCaps.DeleteContainerStateSupported
20 }
21
22
23
24 func (uvm *UtilityVM) Capabilities() (uint32, schema1.GuestDefinedCapabilities) {
25 return uvm.protocol, uvm.guestCaps
26 }
27
View as plain text