mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-28 05:40:26 +00:00
8304907db0
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
37 lines
618 B
Go
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) {
|
|
}
|