rumprun support

This commit is contained in:
Ian Eyberg
2016-06-13 09:29:40 -07:00
parent 8e81a1803c
commit 9d5c5ba1a8

12
server/pse/pse_rumprun.go Normal file
View File

@@ -0,0 +1,12 @@
// Copyright 2015-2016 Apcera Inc. All rights reserved.
package pse
// This is a placeholder for now.
func ProcUsage(pcpu *float64, rss, vss *int64) error {
*pcpu = 0.0
*rss = 0
*vss = 0
return nil
}