File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -157,6 +157,18 @@ func Pipe2(p []int, flags int) (err error) {
157157 return ENOSYS // TODO
158158}
159159
160+ // TODO
161+ type WaitStatus uint32
162+ func (w WaitStatus ) Exited () bool { return false }
163+ func (w WaitStatus ) ExitStatus () int { return 0 }
164+ func (w WaitStatus ) Signaled () bool { return false }
165+ func (w WaitStatus ) Signal () Signal { return 0 }
166+ func (w WaitStatus ) CoreDump () bool { return false }
167+ func (w WaitStatus ) Stopped () bool { return false }
168+ func (w WaitStatus ) Continued () bool { return false }
169+ func (w WaitStatus ) StopSignal () Signal { return 0 }
170+ func (w WaitStatus ) TrapCause () int { return 0 }
171+
160172func Getenv (key string ) (value string , found bool ) {
161173 data := cstring (key )
162174 raw := libc_getenv (& data [0 ])
You can’t perform that action at this time.
0 commit comments