Commit b2c75ae2 authored by David Crawshaw's avatar David Crawshaw

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
parent 12b990ba
...@@ -36,7 +36,8 @@ _cgo_sys_thread_start(ThreadStart *ts) ...@@ -36,7 +36,8 @@ _cgo_sys_thread_start(ThreadStart *ts)
pthread_sigmask(SIG_SETMASK, &oset, nil); pthread_sigmask(SIG_SETMASK, &oset, nil);
if (err != 0) { if (err != 0) {
fatalf("pthread_create failed: %s", strerror(err)); fprintf(stderr, "runtime/cgo: pthread_create failed: %s\n", strerror(err));
abort();
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment