Home | History | Annotate | Download | only in osutil
      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 
      6 package osutil
      7 
      8 import (
      9 	"os/exec"
     10 )
     11 
     12 func Sandbox(cmd *exec.Cmd, user, net bool) error {
     13 	return nil
     14 }
     15 
     16 func SandboxChown(file string) error {
     17 	return nil
     18 }
     19 
     20 func setPdeathsig(cmd *exec.Cmd) {
     21 }
     22