Fix build breakage (on ia64) caused by a missing file descriptor to
_thread_printf(). Use STDERR_FILENO as the file descriptor.
This commit is contained in:
parent
8c0d4b5f92
commit
e7c9b7517b
@ -187,7 +187,7 @@ _pthread_create(pthread_t * thread, const pthread_attr_t * attr,
|
||||
ret = thr_create(&new_thread->ctx, &new_thread->thr_id, flags);
|
||||
|
||||
if (ret != 0) {
|
||||
_thread_printf("thr_create() == %d\n", ret);
|
||||
_thread_printf(STDERR_FILENO, "thr_create() == %d\n", ret);
|
||||
PANIC("thr_create");
|
||||
}
|
||||
|
||||
|
@ -178,7 +178,7 @@ _thread_gc(pthread_addr_t arg)
|
||||
*/
|
||||
if ((ret = pthread_cond_timedwait(&_gc_cond,
|
||||
&_gc_mutex, &abstime)) != 0 && ret != ETIMEDOUT) {
|
||||
_thread_printf("ret = %d", ret);
|
||||
_thread_printf(STDERR_FILENO, "ret = %d", ret);
|
||||
PANIC("gc cannot wait for a signal");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user