mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-05 10:32:19 +00:00
12 lines
168 B
Go
12 lines
168 B
Go
|
//go:build !linux
|
||
|
|
||
|
package mmap
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
func cgroupsMemoryLimit() (uint64, error) {
|
||
|
return 0, errors.New("cgroups not supported in this environment")
|
||
|
}
|