mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
15 lines
264 B
Go
15 lines
264 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package cgroupslib
|
|
|
|
// Mode indicates whether the Client node is configured with cgroups v1 or v2,
|
|
// or is not configured with cgroups enabled.
|
|
type Mode byte
|
|
|
|
const (
|
|
OFF = iota
|
|
CG1
|
|
CG2
|
|
)
|