diff options
author | mtm <mtm@FreeBSD.org> | 2003-06-09 17:58:15 +0000 |
---|---|---|
committer | mtm <mtm@FreeBSD.org> | 2003-06-09 17:58:15 +0000 |
commit | 54803093749811fd48986e5189e4c2c289b9565f (patch) | |
tree | 03da2338eb53f3e19f919b5b41e5c21ecdeca139 /lib/libthr | |
parent | f291e0547037edaf6a83b5b1734fdf48232f4177 (diff) | |
download | FreeBSD-src-54803093749811fd48986e5189e4c2c289b9565f.zip FreeBSD-src-54803093749811fd48986e5189e4c2c289b9565f.tar.gz |
_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.
Diffstat (limited to 'lib/libthr')
-rw-r--r-- | lib/libthr/thread/thr_printf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libthr/thread/thr_printf.c b/lib/libthr/thread/thr_printf.c index 3a120e8..db861a7 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)); } |