diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-09-18 19:15:31 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-09-18 19:15:31 +0000 |
commit | 8b8074da86f81a4f5974f01c1f9d297025ab04fe (patch) | |
tree | b1145a035fc7b75662c04fa97f7a39b749733d53 /linuxthreads/sysdeps/pthread/pthread.h | |
parent | bcc86889c775a0f717de272cc270e3b089aa5221 (diff) | |
download | glibc-8b8074da86f81a4f5974f01c1f9d297025ab04fe.zip glibc-8b8074da86f81a4f5974f01c1f9d297025ab04fe.tar.gz glibc-8b8074da86f81a4f5974f01c1f9d297025ab04fe.tar.bz2 |
Update.
2003-09-18 Jakub Jelinek <jakub@redhat.com>
* libio/memstream.c (open_memstream): Use _IO_init instead of
_IO_old_init.
Diffstat (limited to 'linuxthreads/sysdeps/pthread/pthread.h')
-rw-r--r-- | linuxthreads/sysdeps/pthread/pthread.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/linuxthreads/sysdeps/pthread/pthread.h b/linuxthreads/sysdeps/pthread/pthread.h index f6cc899..efaf851 100644 --- a/linuxthreads/sysdeps/pthread/pthread.h +++ b/linuxthreads/sysdeps/pthread/pthread.h @@ -289,7 +289,9 @@ extern int pthread_attr_getstacksize (__const pthread_attr_t *__restrict __THROW; #ifdef __USE_GNU -/* Get thread attributes corresponding to the already running thread TH. */ +/* Initialize thread attribute *ATTR with attributes corresponding to the + already running thread TH. It shall be called on unitialized ATTR + and destroyed with pthread_attr_destroy when no longer needed. */ extern int pthread_getattr_np (pthread_t __th, pthread_attr_t *__attr) __THROW; #endif |