about summary refs log tree commit diff
path: root/linuxthreads/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-09-18 19:15:31 +0000
committerUlrich Drepper <drepper@redhat.com>2003-09-18 19:15:31 +0000
commit8b8074da86f81a4f5974f01c1f9d297025ab04fe (patch)
treeb1145a035fc7b75662c04fa97f7a39b749733d53 /linuxthreads/sysdeps
parentbcc86889c775a0f717de272cc270e3b089aa5221 (diff)
downloadglibc-8b8074da86f81a4f5974f01c1f9d297025ab04fe.tar.gz
glibc-8b8074da86f81a4f5974f01c1f9d297025ab04fe.tar.xz
glibc-8b8074da86f81a4f5974f01c1f9d297025ab04fe.zip
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')
-rw-r--r--linuxthreads/sysdeps/pthread/pthread.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/linuxthreads/sysdeps/pthread/pthread.h b/linuxthreads/sysdeps/pthread/pthread.h
index f6cc89950d..efaf8513a5 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