limits_plan9.go raw

   1  package limits
   2  
   3  // SetLimits is a no-op on Plan 9 due to the lack of process accounting.
   4  func SetLimits() (e error) {
   5  	return nil
   6  }
   7