add setLimits stub for plan 9

This commit is contained in:
mischief 2013-10-16 12:45:53 -07:00 committed by Dave Collins
parent ae5810bc50
commit f346c36a0d
2 changed files with 11 additions and 1 deletions

10
limits_plan9.go Normal file
View file

@ -0,0 +1,10 @@
// Copyright (c) 2013 Conformal Systems LLC.
// Use of this source code is governed by an ISC
// license that can be found in the LICENSE file.
package main
// Plan 9 has no process accounting. no-op here
func setLimits() error {
return nil
}

View file

@ -2,7 +2,7 @@
// Use of this source code is governed by an ISC
// license that can be found in the LICENSE file.
// +build !windows
// +build !windows,!plan9
package main