From 05e948d9969843aba78c717dad84a68e351439a2 Mon Sep 17 00:00:00 2001 From: Mike Makonnen Date: Mon, 9 Jun 2003 17:58:15 +0000 Subject: [PATCH] _thread_printf() is only used for debugging or in cases where something's screwed beyond all help, so it can just skip the pthreads wrapper for write(2) and call directly into it. --- lib/libthr/thread/thr_printf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libthr/thread/thr_printf.c b/lib/libthr/thread/thr_printf.c index 3a120e87eb40..db861a7b3298 100644 --- a/lib/libthr/thread/thr_printf.c +++ b/lib/libthr/thread/thr_printf.c @@ -110,7 +110,7 @@ static void pchar(int fd, char c) { - write(fd, &c, 1); + __sys_write(fd, &c, 1); } /* @@ -120,6 +120,6 @@ static void pstr(int fd, const char *s) { - write(fd, s, strlen(s)); + __sys_write(fd, s, strlen(s)); }