containerd/vendor/github.com/nats-io/gnatsd/server/pse/pse_rumprun.go

14 lines
225 B
Go
Raw Normal View History

// Copyright 2015-2016 Apcera Inc. All rights reserved.
// +build rumprun
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
}