commit | 3c7104479c3d25db85705ddc6bdc01c19be0a54e | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Thu Jan 20 13:36:00 2011 -0500 |
committer | Russ Cox <rsc@golang.org> | Thu Jan 20 13:36:00 2011 -0500 |
tree | c9d4dde991af0ed1ba9c65dced670e4fff85c228 | |
parent | 32a8f5a8742daeb8c292f40d556c78f792207599 [diff] |
runtime: drop CLONE_PARENT The functionality we want (shared ppid) is implied by CLONE_THREAD already, and CLONE_PARENT causes problems if the Go program is pid 1 (init). See issue 1406 for more details. Fixes #1406. R=adg, iant CC=golang-dev https://golang.org/cl/3971044