/ vendor / github.com / btcsuite / btcd / limits / limits_plan9.go
limits_plan9.go
 1  // Copyright (c) 2013-2014 The btcsuite developers
 2  // Use of this source code is governed by an ISC
 3  // license that can be found in the LICENSE file.
 4  
 5  package limits
 6  
 7  // SetLimits is a no-op on Plan 9 due to the lack of process accounting.
 8  func SetLimits() error {
 9  	return nil
10  }