add setLimits stub for plan 9
This commit is contained in:
parent
ae5810bc50
commit
f346c36a0d
2 changed files with 11 additions and 1 deletions
10
limits_plan9.go
Normal file
10
limits_plan9.go
Normal 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
|
||||
}
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue