mirror of
https://github.com/golang/go
synced 2024-11-05 15:46:11 -07:00
63a707e354
It was never tested and also breaks Windows. run.go doesn't yet support the proper !windows,!plan9 syntax. ««« original CL description test: do not run SIGCHLD test on Plan 9 R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/10017045 »»» R=golang-dev, dave CC=golang-dev https://golang.org/cl/10024044
18 lines
361 B
Go
18 lines
361 B
Go
// +build !windows
|
|
// cmpout
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Test that a program can survive SIGCHLD.
|
|
|
|
package main
|
|
|
|
import "syscall"
|
|
|
|
func main() {
|
|
syscall.Kill(syscall.Getpid(), syscall.SIGCHLD)
|
|
println("survived SIGCHLD")
|
|
}
|