mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00:00 +00:00
13 lines
326 B
Go
13 lines
326 B
Go
package memlimit
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
// ErrNoCgroup is returned when the process is not in cgroup.
|
|
ErrNoCgroup = errors.New("process is not in cgroup")
|
|
// ErrCgroupsNotSupported is returned when the system does not support cgroups.
|
|
ErrCgroupsNotSupported = errors.New("cgroups is not supported on this system")
|
|
)
|