mirror of
https://github.com/golang/go
synced 2024-11-18 15:44:41 -07:00
runtime/testdata/testprogcgo: add explicit return value to signalThread
Should fix the clang builder. Change-Id: I3ee34581b6a7ec902420de72a8a08a2426997782 Reviewed-on: https://go-review.googlesource.com/30363 Run-TryBot: Michael Munday <munday@ca.ibm.com> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
aad29eba29
commit
f15f1ff46f
2
src/runtime/testdata/testprogcgo/racesig.go
vendored
2
src/runtime/testdata/testprogcgo/racesig.go
vendored
@ -31,7 +31,7 @@ static void* signalThread(void* p) {
|
|||||||
for (i = 0; i < 100; i++) {
|
for (i = 0; i < 100; i++) {
|
||||||
for (j = 0; j < ALLOCERS; j++) {
|
for (j = 0; j < ALLOCERS; j++) {
|
||||||
if (pthread_kill(pt[j], SIGCHLD) < 0) {
|
if (pthread_kill(pt[j], SIGCHLD) < 0) {
|
||||||
return;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
usleep(1);
|
usleep(1);
|
||||||
|
Loading…
Reference in New Issue
Block a user