diff options
| author | Daniel Eischen <deischen@FreeBSD.org> | 2001-01-31 02:16:57 +0000 |
|---|---|---|
| committer | Daniel Eischen <deischen@FreeBSD.org> | 2001-01-31 02:16:57 +0000 |
| commit | f8a19b12fb0ab90df58d696e881176df13957af8 (patch) | |
| tree | 0da94394769a5c0e19951acbb91eb86f52791ae3 /lib | |
| parent | bceb4f5a60c7c20390976aaf88ff6b955c1131c8 (diff) | |
Notes
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 0d99de4f3fae..78b75ef4dce9 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 0d99de4f3fae..78b75ef4dce9 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 0d99de4f3fae..78b75ef4dce9 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) |
