summaryrefslogtreecommitdiff
path: root/linuxthreads
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2001-02-06 18:25:35 +0000
committerAndreas Jaeger <aj@suse.de>2001-02-06 18:25:35 +0000
commiteb8ea10ab211e5fc01bb7b37d862ee096eab3a4e (patch)
tree13dc53e8be33e6c8571e8a21f7aadbb7a899570b /linuxthreads
parent18bd894499a4f468a1b5567f1f22e5455a038348 (diff)
* sysdeps/pthread/pthread.h: Move __pthread_initialize from here
to... * internals.h: ...here. 2001-02-06 Andreas Jaeger <aj@suse.de> * sysdeps/pthread/pthread.h: Move __pthread_initialize from here to... * internals.h: ...here.
Diffstat (limited to 'linuxthreads')
-rw-r--r--linuxthreads/ChangeLog6
-rw-r--r--linuxthreads/internals.h3
-rw-r--r--linuxthreads/sysdeps/pthread/pthread.h4
3 files changed, 9 insertions, 4 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog
index acb84808de..b47d6488d3 100644
--- a/linuxthreads/ChangeLog
+++ b/linuxthreads/ChangeLog
@@ -1,3 +1,9 @@
+2001-02-06 Andreas Jaeger <aj@suse.de>
+
+ * sysdeps/pthread/pthread.h: Move __pthread_initialize from here
+ to...
+ * internals.h: ...here.
+
2001-02-05 Jes Sorensen <jes@linuxcare.com>
* sysdeps/unix/sysv/linux/ia64/pt-initfini.c: New file.
diff --git a/linuxthreads/internals.h b/linuxthreads/internals.h
index 9480530f6e..06853323bb 100644
--- a/linuxthreads/internals.h
+++ b/linuxthreads/internals.h
@@ -539,4 +539,7 @@ extern void __linuxthreads_create_event (void);
extern void __linuxthreads_death_event (void);
extern void __linuxthreads_reap_event (void);
+/* This function is called to initialize the pthread library. */
+extern void __pthread_initialize (void);
+
#endif /* internals.h */
diff --git a/linuxthreads/sysdeps/pthread/pthread.h b/linuxthreads/sysdeps/pthread/pthread.h
index 2911da8ef1..1a190e0cd4 100644
--- a/linuxthreads/sysdeps/pthread/pthread.h
+++ b/linuxthreads/sysdeps/pthread/pthread.h
@@ -672,10 +672,6 @@ extern int pthread_atfork (void (*__prepare) (void),
extern void pthread_kill_other_threads_np (void) __THROW;
-
-/* This function is called to initialize the pthread library. */
-extern void __pthread_initialize (void) __THROW;
-
__END_DECLS
#endif /* pthread.h */