OSDN Git Service

* config/i386/sse.md (sseintprefix): Rename from gthrfirstp.
[pf3gnuchains/gcc-fork.git] / libgo / go / syscall / exec_stubs.go
1 // Copyright 2010 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 // Stubs for fork, exec and wait.
6
7 package syscall
8
9 func ForkExec(argv0 string, argv []string, envv []string, dir string, fd []int) (pid int, err int) {
10         return -1, ENOSYS;
11 }
12
13 func Exec(argv0 string, argv []string, envv []string) (err int) {
14         return ENOSYS;
15 }
16
17 func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, errno int) {
18         return -1, ENOSYS;
19 }