1// Copyright 2017 syzkaller project authors. All rights reserved. 2// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. 3 4// +build appengine 5 6package osutil 7 8import ( 9 "os/exec" 10) 11 12func Sandbox(cmd *exec.Cmd, user, net bool) error { 13 return nil 14} 15 16func SandboxChown(file string) error { 17 return nil 18} 19 20func setPdeathsig(cmd *exec.Cmd) { 21} 22