]> Cypherpunks repositories - gostls13.git/commit
test/sigchld.go: use syscall.Kill instead of a combination
authorVinu Rajashekhar <vinutheraj@gmail.com>
Thu, 29 Jul 2010 01:26:29 +0000 (18:26 -0700)
committerRuss Cox <rsc@golang.org>
Thu, 29 Jul 2010 01:26:29 +0000 (18:26 -0700)
commit1ea5d154075033742ed2017950466af094d862f7
treeec511929e25e07171b6e85013b4a016ab759b43e
parent491a3ca5b74fc4c06746020594d716b30195a923
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
test/sigchld.go