commit | 1ea5d154075033742ed2017950466af094d862f7 | [log] [tgz] |
---|---|---|
author | Vinu Rajashekhar <vinutheraj@gmail.com> | Wed Jul 28 18:26:29 2010 -0700 |
committer | Russ Cox <rsc@golang.org> | Wed Jul 28 18:26:29 2010 -0700 |
tree | ec511929e25e07171b6e85013b4a016ab759b43e | |
parent | 491a3ca5b74fc4c06746020594d716b30195a923 [diff] |
test/sigchld.go: use syscall.Kill instead of a combination of syscall.Syscall and syscall.SYS_KILL. In RTEMS, there is no syscall.Syscall support, but it does support POSIX signals. So, if this testcase is changed to use syscall.Kill, then it would run fine on RTEMS, when using gccgo. R=rsc, iant CC=golang-dev https://golang.org/cl/1863046