1
0
mirror of https://github.com/golang/go synced 2024-11-12 09:20:22 -07:00

runtime/cgo: revert use of undefined logging function

It snuck into cl/106380043. Too many active clients.

LGTM=ruiu
R=golang-codereviews, ruiu
CC=golang-codereviews
https://golang.org/cl/110830045
This commit is contained in:
David Crawshaw 2014-07-03 16:52:34 -04:00
parent 12b990ba7d
commit b2c75ae2be

View File

@ -36,7 +36,8 @@ _cgo_sys_thread_start(ThreadStart *ts)
pthread_sigmask(SIG_SETMASK, &oset, nil);
if (err != 0) {
fatalf("pthread_create failed: %s", strerror(err));
fprintf(stderr, "runtime/cgo: pthread_create failed: %s\n", strerror(err));
abort();
}
}