summaryrefslogtreecommitdiffhomepage
path: root/runsc/boot
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-03-06 01:19:15 +0000
committergVisor bot <gvisor-bot@google.com>2020-03-06 01:19:15 +0000
commit08f51e8ce597aaccefe77528a132a317b3832ba1 (patch)
tree11f3cf0ba3c440d25861d193334bbe22cb4a1681 /runsc/boot
parentf82f7b6f019af248daa9b03749169261c060c496 (diff)
parent6367963c14e2d3d35805907a7057a63fc58c30f6 (diff)
Merge release-20200219.0-109-g6367963 (automated)
Diffstat (limited to 'runsc/boot')
-rw-r--r--runsc/boot/controller.go13
1 files changed, 8 insertions, 5 deletions
diff --git a/runsc/boot/controller.go b/runsc/boot/controller.go
index 17e774e0c..8125d5061 100644
--- a/runsc/boot/controller.go
+++ b/runsc/boot/controller.go
@@ -101,11 +101,14 @@ const (
// Profiling related commands (see pprof.go for more details).
const (
- StartCPUProfile = "Profile.StartCPUProfile"
- StopCPUProfile = "Profile.StopCPUProfile"
- HeapProfile = "Profile.HeapProfile"
- StartTrace = "Profile.StartTrace"
- StopTrace = "Profile.StopTrace"
+ StartCPUProfile = "Profile.StartCPUProfile"
+ StopCPUProfile = "Profile.StopCPUProfile"
+ HeapProfile = "Profile.HeapProfile"
+ GoroutineProfile = "Profile.GoroutineProfile"
+ BlockProfile = "Profile.BlockProfile"
+ MutexProfile = "Profile.MutexProfile"
+ StartTrace = "Profile.StartTrace"
+ StopTrace = "Profile.StopTrace"
)
// Logging related commands (see logging.go for more details).