syzkaller/pkg/osutil/osutil_bsd.go
Dmitry Vyukov 8304907db0 tools/syz-env: restrict Makefile parallelism based on RAM
Ensure that we have at least 1GB per Makefile job.
Go compiler/linker can consume significant amount of memory
(observed to consume at least 600MB). See #1276 for context.
Update #1276
2019-07-19 09:51:07 +02:00

37 lines
618 B
Go

// Copyright 2017 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
// +build freebsd,!appengine netbsd,!appengine openbsd,!appengine
package osutil
import (
"os"
"os/exec"
)
func RemoveAll(dir string) error {
return os.RemoveAll(dir)
}
func SystemMemorySize() uint64 {
return 0
}
func prolongPipe(r, w *os.File) {
}
func Sandbox(cmd *exec.Cmd, user, net bool) error {
return nil
}
func SandboxChown(file string) error {
return nil
}
func setPdeathsig(cmd *exec.Cmd) {
}
func killPgroup(cmd *exec.Cmd) {
}