diff options
author | deischen <deischen@FreeBSD.org> | 2001-01-31 02:16:57 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2001-01-31 02:16:57 +0000 |
commit | aa95571c98d393db5fb26cc9ba420d16277eb1d4 (patch) | |
tree | bfc48671f0296b0a5c143211809d149021d7c817 /lib | |
parent | f6afaf0b50f5b943210bb1bdc775f92625180066 (diff) | |
download | FreeBSD-src-aa95571c98d393db5fb26cc9ba420d16277eb1d4.zip FreeBSD-src-aa95571c98d393db5fb26cc9ba420d16277eb1d4.tar.gz |
s/_thread_sys_write/__sys_write/
Submitted by: Mike Heffner <mheffner@vt.edu>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc_r/uthread/pthread_private.h | 4 | ||||
-rw-r--r-- | lib/libkse/thread/thr_private.h | 4 | ||||
-rw-r--r-- | lib/libpthread/thread/thr_private.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/lib/libc_r/uthread/pthread_private.h b/lib/libc_r/uthread/pthread_private.h index 0d99de4..78b75ef 100644 --- a/lib/libc_r/uthread/pthread_private.h +++ b/lib/libc_r/uthread/pthread_private.h @@ -114,12 +114,12 @@ #define stdout_debug(args...) do { \ char buf[128]; \ snprintf(buf, sizeof(buf), ##args); \ - _thread_sys_write(1, buf, strlen(buf)); \ + __sys_write(1, buf, strlen(buf)); \ } while (0) #define stderr_debug(args...) do { \ char buf[128]; \ snprintf(buf, sizeof(buf), ##args); \ - _thread_sys_write(2, buf, strlen(buf)); \ + __sys_write(2, buf, strlen(buf)); \ } while (0) diff --git a/lib/libkse/thread/thr_private.h b/lib/libkse/thread/thr_private.h index 0d99de4..78b75ef 100644 --- a/lib/libkse/thread/thr_private.h +++ b/lib/libkse/thread/thr_private.h @@ -114,12 +114,12 @@ #define stdout_debug(args...) do { \ char buf[128]; \ snprintf(buf, sizeof(buf), ##args); \ - _thread_sys_write(1, buf, strlen(buf)); \ + __sys_write(1, buf, strlen(buf)); \ } while (0) #define stderr_debug(args...) do { \ char buf[128]; \ snprintf(buf, sizeof(buf), ##args); \ - _thread_sys_write(2, buf, strlen(buf)); \ + __sys_write(2, buf, strlen(buf)); \ } while (0) diff --git a/lib/libpthread/thread/thr_private.h b/lib/libpthread/thread/thr_private.h index 0d99de4..78b75ef 100644 --- a/lib/libpthread/thread/thr_private.h +++ b/lib/libpthread/thread/thr_private.h @@ -114,12 +114,12 @@ #define stdout_debug(args...) do { \ char buf[128]; \ snprintf(buf, sizeof(buf), ##args); \ - _thread_sys_write(1, buf, strlen(buf)); \ + __sys_write(1, buf, strlen(buf)); \ } while (0) #define stderr_debug(args...) do { \ char buf[128]; \ snprintf(buf, sizeof(buf), ##args); \ - _thread_sys_write(2, buf, strlen(buf)); \ + __sys_write(2, buf, strlen(buf)); \ } while (0) |