This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Final move



Here's one more patch to move a function to an internal header.

If you wondered why I did this: I've went through the LSB draft and
noticed these functions mentioned there the functions as required
functions - and decided that they should not be part of LSB since
they're really internal to glibc.  I'll send patches to LSB for this
later today.

Andreas

2001-02-06  Andreas Jaeger  <aj@suse.de>

	* sysdeps/pthread/pthread.h: Move __pthread_initialize from here
	to...
	* internals.h: ...here.

============================================================
Index: linuxthreads/internals.h
--- linuxthreads/internals.h	2000/12/27 17:15:56	1.58
+++ linuxthreads/internals.h	2001/02/06 09:36:20
@@ -539,4 +539,7 @@
 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 */
============================================================
Index: linuxthreads/sysdeps/pthread/pthread.h
--- linuxthreads/sysdeps/pthread/pthread.h	2001/01/28 08:52:11	1.29
+++ linuxthreads/sysdeps/pthread/pthread.h	2001/02/06 09:36:20
@@ -672,10 +672,6 @@
 
 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 */

-- 
 Andreas Jaeger
  SuSE Labs aj@suse.de
   private aj@arthur.inka.de
    http://www.suse.de/~aj

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]