about summary refs log tree commit diff
path: root/linuxthreads/sysdeps/pthread/pthread.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-09-07 20:52:41 +0000
committerUlrich Drepper <drepper@redhat.com>2004-09-07 20:52:41 +0000
commite0329987e39550dbc6db6cb936322efb852ea99b (patch)
tree9c0141475b52d36529e61c39f71743bf0c76b402 /linuxthreads/sysdeps/pthread/pthread.h
parentf863a5a5aff07502d2842fd52fbc6fde8dffab32 (diff)
downloadglibc-e0329987e39550dbc6db6cb936322efb852ea99b.tar.gz
glibc-e0329987e39550dbc6db6cb936322efb852ea99b.tar.xz
glibc-e0329987e39550dbc6db6cb936322efb852ea99b.zip
Update.
2004-09-07  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/pthread/pthread.h (pthread_once): Remove __THROW since
	the initialization function might throw.
Diffstat (limited to 'linuxthreads/sysdeps/pthread/pthread.h')
-rw-r--r--linuxthreads/sysdeps/pthread/pthread.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/linuxthreads/sysdeps/pthread/pthread.h b/linuxthreads/sysdeps/pthread/pthread.h
index c4a5f2caac..80c2db80b4 100644
--- a/linuxthreads/sysdeps/pthread/pthread.h
+++ b/linuxthreads/sysdeps/pthread/pthread.h
@@ -573,9 +573,12 @@ extern void *pthread_getspecific (pthread_key_t __key) __THROW;
 /* Guarantee that the initialization function INIT_ROUTINE will be called
    only once, even if pthread_once is executed several times with the
    same ONCE_CONTROL argument. ONCE_CONTROL must point to a static or
-   extern variable initialized to PTHREAD_ONCE_INIT.  */
+   extern variable initialized to PTHREAD_ONCE_INIT.
+
+   The initialization functions might throw exception which is why
+   this function is not marked with __THROW.  */
 extern int pthread_once (pthread_once_t *__once_control,
-			 void (*__init_routine) (void)) __THROW;
+			 void (*__init_routine) (void));
 
 
 /* Functions for handling cancellation.  */