mirror of
https://github.com/kemko/nomad.git
synced 2026-01-07 10:55:42 +03:00
17 lines
352 B
Go
17 lines
352 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build !linux
|
|
|
|
package cgroupslib
|
|
|
|
// LinuxResourcesPath does nothing on non-Linux systems
|
|
func LinuxResourcesPath(string, string) string {
|
|
return ""
|
|
}
|
|
|
|
// MaybeDisableMemorySwappiness does nothing on non-Linux systems
|
|
func MaybeDisableMemorySwappiness() *int {
|
|
return nil
|
|
}
|