diff options
author | marcel <marcel@FreeBSD.org> | 2003-04-20 02:56:12 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2003-04-20 02:56:12 +0000 |
commit | 994500f60f57c0056b451684eb45b9b50657d611 (patch) | |
tree | 95584ea12d3809f60aac928444adea9596d4070e /lib | |
parent | 6090151f12c8e22f86ebd5f7730f05eb236aa4ed (diff) | |
download | FreeBSD-src-994500f60f57c0056b451684eb45b9b50657d611.zip FreeBSD-src-994500f60f57c0056b451684eb45b9b50657d611.tar.gz |
Fix build breakage (on ia64) caused by a missing file descriptor to
_thread_printf(). Use STDERR_FILENO as the file descriptor.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libthr/thread/thr_create.c | 2 | ||||
-rw-r--r-- | lib/libthr/thread/thr_gc.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/libthr/thread/thr_create.c b/lib/libthr/thread/thr_create.c index 3ad7dc0..d2ef538 100644 --- a/lib/libthr/thread/thr_create.c +++ b/lib/libthr/thread/thr_create.c @@ -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"); } diff --git a/lib/libthr/thread/thr_gc.c b/lib/libthr/thread/thr_gc.c index a33acce..e62c50b 100644 --- a/lib/libthr/thread/thr_gc.c +++ b/lib/libthr/thread/thr_gc.c @@ -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"); } } |