(put16) [!_STRING_ARCH_unaligned && BIG_ENDIAN]: Fix index.
[glibc.git] / linuxthreads / ChangeLog
blobefc0143549609f43699dc0312fcc8989b5f9be79
1 2001-06-16  H.J. Lu  <hjl@gnu.org>
3         * internals.h: Include <stackinfo.h>.
5         * attr.c: Don't include <stackinfo.h> here.
6         * cancel.c: Likewise.
7         * manager.c: Likewise.
8         * pthread.c: Likewise.
9         * ptlongjmp.c: Likewise.
11 2001-03-23  Matthew Wilcox  <willy@ldl.fc.hp.com>
13         * attr.c: Make _STACK_GROWS_UP work.
14         * internals.h: Likewise.
15         * manager.c: Likewise.
16         * pthread.c: Likewise.
18 2001-06-15  H.J. Lu  <hjl@gnu.org>
20         * pthread.c (__pthread_reset_main_thread): Fix a typo.
22 2001-02-02  John S. Marvin  <jsm@udlkern.fc.hp.com>
24         * semaphore.h: Use struct _pthread_fastlock as an element of
25         sem_t instead of an identical struct.
26         * rwlock.c: Remove casts.
27         * semaphore.c: Likewise.
29 2001-04-30  Alan Modra  <amodra@one.net.au>
31         * sysdeps/unix/sysv/linux/hppa/pt-initfini.c: New.
33 2001-05-25  Bruce Mitchener  <bruce@cubik.org>
35         * linuxthreads.texi: Spelling corrections.
37 2001-05-25  Ulrich Drepper  <drepper@redhat.com>
39         * oldsemaphore.c (__old_sem_wait): Clear p_nextwaiting before
40         returning successfully.
41         Patch by Gene Cooperman <gene@ccs.neu.edu>.
43 2001-05-24  Ulrich Drepper  <drepper@redhat.com>
45         * spinlock.c (__pthread_lock) [HAS_COMPARE_AND_SWAP]: Before doing any
46         serious work try once whether the lock is uncontested.
47         Remove duplicate reading of __status before loop.
48         Change suggested by Hans Boehm <hans_boehm@hp.com>.
50         * spinlock.h (__pthread_trylock): Remove need for oldstatus variable.
51         (__pthread_alt_trylock): Likewise.
53 2001-05-01  Kaz Kylheku  <kaz@ashi.footprints.net>
55         Memory barrier overhaul following line by line inspection.
56         * mutex.c (pthread_once): Missing memory barriers added.
57         * pthread.c (__pthread_wait_for_restart_signal,
58         __pthread_timedsuspend_new, __pthread_restart_new): Added
59         memory barriers ``just in case'' and for documentary value.
60         * spinlock.c (__pthread_release): New inline function for releasing
61         spinlock, to complement __pthread_acquire.  Includes memory
62         barrier prior to assignment to spinlock, and __asm __volatile
63         dance to prevent reordering or optimization of the spinlock access.
64         * spinlock.c (__pthread_unlock, __pthread_alt_lock,
65         __pthread_alt_timedlock, __pthread_alt_unlock,
66         __pthread_compare_and_swap): Updated to use new __pthread_release
67         instead of updating spinlock directly.
68         * spinlock.c (__pthread_lock, __pthread_unlock, wait_node_alloc,
69         wait_node_free, wait_node_dequeue, __pthread_alt_lock,
70         __pthread_alt_timedlock, __pthread_alt_unlock, __pthread_acquire):
71         Memory barrier overhaul.  Lots of missing memory barriers added,
72         a couple needless ones removed.
73         * spinlock.c (__pthread_compare_and_swap): testandset optimization
74         removed, just calls __pthread_acquire, which has the new read
75         barrier in it before its testandset.
77 2001-05-20  Roland McGrath  <roland@frob.com>
79         * Makeconfig: New file, variables used to be in main libc Makeconfig.
81 2001-05-09  Geoff Keating  <geoffk@redhat.com>
83         * sysdeps/powerpc/pt-machine.h
84         (HAS_COMPARE_AND_SWAP_WITH_RELEASE_SEMANTICS): Define.
85         (__compare_and_swap): Remove memory barriers.
86         (__compare_and_swap_with_release_semantics): New function.
88 2001-04-24  Andreas Jaeger  <aj@suse.de>
90         * wrapsyscall.c: send* and recv* return ssize_t.
92         * sysdeps/pthread/timer_getoverr.c (timer_getoverrun): Unlock the
93         mutex instead of double locking it.
94         Reported by Pierre Artaud <partaud@sodatec.com>.
96 2001-04-23  Ulrich Drepper  <drepper@redhat.com>
98         * sysdeps/pthread/getcpuclockid.c: Make function generic, test
99         using #ifdef whether the clock is available.
100         * sysdeps/unix/sysv/linux/i386/getcpuclockid.c: Removed.
102         * sysdeps/ia64/Versions: New file.
104         * sysdeps/unix/sysv/linux/ia64/pt-initfini.c (_init): We don't
105         have to call __gmon_start__ in the libpthread DSO.
106         * sysdeps/pthread/pt-initfini.c (_init): Likewise.
108         * Makefile (libpthread-routines): Add ptclock_gettime and
109         ptclock_settime.
110         * internals.h: Don't use cpuclock-init.h definitions, use
111         hp-timing.h definitions.
112         * pthread.c: Likewise.
113         * manager.c: Likewise.
114         * ptclock_gettime.c: New file.
115         * ptclock_settime.c: New file.
116         * internals.h: Fix parameter type for __pthread_clock_gettime and
117         __pthread_clock_settime.
119         * sysdeps/i386/i586/ptclock_gettime.c: Removed.
120         * sysdeps/i386/i586/ptclock_settime.c: Removed.
121         * sysdeps/i386/i586/Makefile: Removed.
123 2001-04-22  Ulrich Drepper  <drepper@redhat.com>
125         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Define _POSIX_ASYNCH_IO.
126         * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: Likewise.
128 2001-04-21  Andreas Jaeger  <aj@suse.de>
130         * sysdeps/pthread/timer_routines.c (thread_func): Add noreturn
131         attribute, remove statements that will never be executed.
132         (thread_func): Remove mutex_unlock call since it's never executed.
133         (thread_func): Fix comment as suggested by Jakub Jelinek.
135         * manager.c (__pthread_manager): Add noreturn
136         attribute.
137         (pthread_start_thread): Likewise, remove return statement.
138         (pthread_start_thread_event): Likewise.
139         Add noreturn attribute for pthread_handle_exit.
140         * weaks.c: Add noreturn attribute for pthread_exit.
142         * internals.h: Add __pthread_clock_gettime and
143         __pthread_clock_settime prototypes.
145 2001-04-21  Ulrich Drepper  <drepper@redhat.com>
147         * internals.h: Include <cpuclock-init.h>.
148         (struct _pthread_descr_struct): Add p_cpuclock_offset field if
149         CPUCLOCK_VARDEF is defined.
150         * pthread.c (__pthread_initialize_minimal): Initialize
151         p_cpuclock_offset field for main thread if CPUCLOCK_INIT is defined.
152         * manager.c (pthread_start_thread): Set p_cpuclock_offset field
153         for new thread to current CPU clock value.
155         * sysdeps/i386/useldt.h: Extend all the macros to handle 8-byte values.
157         * sysdeps/i386/i586/Makefile: New file.
158         * sysdeps/i386/i586/Versions: New file.
159         * sysdeps/i386/i586/ptclock_gettime.c: New file.
160         * sysdeps/i386/i586/ptclock_settime.c: New file.
161         * sysdeps/i386/i686/Implies: New file.
163 2001-04-18  Jakub Jelinek  <jakub@redhat.com>
165         * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile: Put specs into
166         $generated, not $postclean-generated.
168 2001-04-18  Andreas Jaeger  <aj@suse.de>
170         * Makefile (otherlibs): Added.
172 2001-04-18  Jakub Jelinek  <jakub@redhat.com>
174         * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile: New file.
176 2001-04-16  Ulrich Drepper  <drepper@redhat.com>
178         * signals.c (sigwait): NSIG is no signal number.  Block all
179         signals while in signal handler for signals in SET.
180         Patch by Manfred Spraul <manfred@colorfullife.com>.
182 2001-04-12  Ulrich Drepper  <drepper@redhat.com>
184         * tst-cancel.c: Disable most tests.  Add new test where all
185         cleanup handlers must run.
186         * Makefile (tests): Add tst-cancel again.
188         * cancel.c (__pthread_perform_cleanup): Correct condition for
189         leaving cleanup loop early.
191         * sysdeps/i386/Makefile: Make sure gcc uses a frame pointer for
192         all the files which use CURRENT_STACK_FRAME.
193         * sysdeps/i386/pt-machine.h (CURRENT_STACK_FRAME): Define using
194         __builtin_frame_address.
195         * sysdeps/i386/i686/pt-machine.h: Likewise.
197 2001-04-11  Ulrich Drepper  <drepper@redhat.com>
199         * Makefile (tests): Comment out tst-cancel for now.
201         * tst-cancel.c (main): Cleanup 4 is supposed to run.  Create
202         temporary file in object directory.
203         * Makefile: Don't allow inlining when compiling tst-cancel.c.
204         Pass $(objpfx) to tst-cancel.
206 2001-04-11  David S. Miller  <davem@redhat.com>
208         * sysdeps/sparc/sparc32/pt-machine.h (stack_pointer): Advance
209         up closer to user local variables so that new cleanup heuristics work.
210         * sysdeps/sparc/sparc64/pt-machine.h (stack_pointer): Likewise.
212 2001-04-11  Ulrich Drepper  <drepper@redhat.com>
214         * cancel.c (_pthread_cleanup_push): Catch invalid __prev buffer
215         and remove it.
216         (_pthread_cleanup_push_defer): Likewise.
218         * tst-cancel.c (main): Fix loop printing cleanup output.
220 2001-04-10  kaz Kojima  <kkojima@rr.iij4u.or.jp>
222         * sysdeps/sh/pspinlock.c (__pthread_spin_lock): Fix a reverse
223         test.
224         (__pthread_spin_trylock): Likewise.
225         * sysdeps/sh/pt-machine.h (testandset): Likewise.
227 2001-04-10  Ulrich Drepper  <drepper@redhat.com>
229         * join.c (pthread_exit): Move code to new function __pthread_do_exit
230         which takes an extra parameter with the current frame pointer.
231         Call new function with CURRENT_STACK_FRAME.
232         (__pthread_do_exit): New function.  Call __pthread_perform_cleanup
233         with the new parameter.
234         (pthread_join): Call __pthread_do_exit instead of pthread_exit.
235         * cancel.c (__pthread_perform_cleanup): Takes extra parameter.  Use
236         this parameter as the initial value the cleanup handler records are
237         compared against.  No active cleanup handler record must have an
238         address lower than the previous one and the initial record must be
239         above (below on PA) the frame address passed in.
240         (pthread_setcancelstate): Call __pthread_do_exit instead of
241         pthread_exit.
242         (pthread_setcanceltype): Likewise.
243         (pthread_testcancel): Likewise.
244         (_pthread_cleanup_pop_restore): Likewise.
245         * condvar.c (pthread_cond_wait): Likewise.
246         (pthread_cond_timedwait_relative): Likewise.
247         * manager.c (pthread_start_thread): Likewise.
248         * oldsemaphore.c (__old_sem_wait): Likewise.
249         * pthread.c (pthread_handle_sigcancel): Likewise.
250         * semaphore.c (__new_sem_wait): Likewise.
251         (sem_timedwait): Likewise.
252         * ptlongjmp.c (pthread_cleanup_upto): Also use current stack frame
253         to limit the cleanup handlers which get run.
254         * internals.h: Add prototype for __pthread_do_exit.  Adjust prototype
255         for __pthread_perform_cleanup.
257         * Makefile (tests): Add tst-cancel.
258         * tst-cancel.c: New file.
260 2001-04-08  Hans-Peter Nilsson  <hp@axis.com>
262         * sysdeps/cris/pt-machine.h: New file.
263         * sysdeps/cris/pspinlock.c: New file.
265 2001-04-09  Hans-Peter Nilsson  <hp@axis.com>
267         * shlib-versions: Add case for Linux on CRIS.
269 2001-03-26  Ulrich Drepper  <drepper@redhat.com>
271         * attr.c (pthread_getattr_np): Correct computation of stack size
272         for machiens with register stack.
274         * Examples/ex17.c (main): Correct detection of failed mmap call.
276 2001-03-21  Jakub Jelinek  <jakub@redhat.com>
278         * pthread.c (__pthread_initialize_manager): Fix a typo.
280 2001-03-21  Jakub Jelinek  <jakub@redhat.com>
282         * attr.c (__pthread_attr_setstack): Fix alignment check.
283         (pthread_getattr_np): __stackaddr is top of stack, not bottom.
284         * Makefile (tests): Add ex17 test.
285         * Examples/ex17.c: New test.
287 2001-03-20  Ulrich Drepper  <drepper@redhat.com>
289         * Makefile: Define -D_RPC_THREAD_SAFE_ for cancel.c.
290         * cancel.c (__pthread_perform_cleanup): Call __rpc_thread_destroy.
291         * sysdeps/pthread/bits/libc-tsd.h: Define _LIBC_TSD_KEY_VARS.
293 2001-03-18  Ulrich Drepper  <drepper@redhat.com>
295         * Makefile: When generating DSO link with libc_nonshared.a.
297 2001-02-26  Jakub Jelinek  <jakub@redhat.com>
299         * signals.c (pthread_sighandler): Use CALL_SIGHANDLER.
301 2001-02-23  Jakub Jelinek  <jakub@redhat.com>
303         * internals.h (__pthread_init_max_stacksize): New prototype.
304         * attr.c (__pthread_attr_setstacksize): Call
305         __pthread_init_max_stacksize if not yet initialized.
306         * pthread.c (__pthread_init_max_stacksize): New function.
307         (__pthread_initialize_manager): Call it.
308         Patch by <dtc@cmucl.cons.org>.
310 2001-03-16  Ulrich Drepper  <drepper@redhat.com>
312         * attr.c (pthread_getattr_np): Fix __stacksize computation for IA-64.
314 2001-03-13  Martin Schwidefsky  <schwidefsky@de.ibm.com>
316         * shlib-versions: Add rule for Linux on 64 bit S/390.
317         * sysdeps/s390/s390-64/pt-machine.h: New file.
318         * sysdeps/unix/sysv/linux/s390/s390-64/pt-initfini.c: New file.
320 2001-03-13  Martin Schwidefsky  <schwidefsky@de.ibm.com>
322         * sysdeps/s390/pt-machine.h: Move to...
323         * sysdeps/s390/s390-32/pt-machine.h: ...here.
324         Add defines for FLOATING_STACK and ARCH_STACK_MAX_SIZE.
326 2001-03-15  Ulrich Drepper  <drepper@redhat.com>
328         * Versions [libpthread] (GLIBC_2.2.3): Add pthread_getattr_np.
329         * attr.c: Implement pthread_getattr_np.
330         * sysdeps/pthread/pthread.h: Add prototype for pthread_getattr_np.
331         * internals.h (struct _pthread_descr_struct): Add p_inheritsched.
332         * manager.c (pthread_handle_create): Initialize p_inheritsched.
334 2001-03-09  Martin Schwidefsky  <schwidefsky@de.ibm.com>
336         * sysdeps/unix/sysv/linux/s390/pt-initfini.c: Use 0x07 padding for
337         code alignment.
339 2001-02-20  Hans Boehm  <hans_boehm@hp.com>
341         * manager.c (manager_mask): Removed static vesion.  Now always local
342         to __pthread_manager().
343         (manager_mask_all): Removed completely.
344         (__pthread_manager): Remove manager_mask_all initialization.
345         (pthread_handle_create): Remove code to set and reset signal mask
346         around __clone2() calls.
348 2001-02-17  Jakub Jelinek  <jakub@redhat.com>
350         * spinlock.c (__pthread_lock): Force lock->__status to be read from
351         memory on every spin.
353 2001-02-10  Andreas Jaeger  <aj@suse.de>
355         * Makefile (extra-objs): New.
357 2001-02-09  Jakub Jelinek  <jakub@redhat.com>
359         * sysdeps/pthread/pt-initfini.c (call_initialize_minimal): Add
360         __pthread_initialize_minimal prototype.
362 2001-02-08  kaz Kojima  <kkojima@rr.iij4u.or.jp>
364         * sysdeps/unix/sysv/linux/sh/pt-initfini.c: New file.
366 2001-02-06  Martin Schwidefsky  <schwidefsky@de.ibm.com>
368         * sysdeps/unix/sysv/linux/s390/pt-initfini.c: New file.
370 2001-02-06  Ulrich Drepper  <drepper@redhat.com>
372         * sysdeps/unix/sysv/linux/ia64/pt-initfini.c: First attempt to fix the
373         broken code.  Patch by Jes Sorensen.
375 2001-02-06  Andreas Jaeger  <aj@suse.de>
377         * sysdeps/pthread/pthread.h: Move __pthread_initialize from here
378         to...
379         * internals.h: ...here.
381 2001-02-05  Jes Sorensen  <jes@linuxcare.com>
383         * sysdeps/unix/sysv/linux/ia64/pt-initfini.c: New file.
385 2001-02-02  Ulrich Drepper  <drepper@redhat.com>
387         * Versions: Remove __pthread_initialize_minimal.
389 2001-02-01  Ulrich Drepper  <drepper@redhat.com>
391         * Makefile: Add rules to build crti.o and make it being used in
392         building libpthread.so.
393         * sysdeps/i386/Makefile: New file.
394         * sysdeps/pthread/pt-initfini.c: New file.
396         * pthread.c: Cleanups.
398 2001-01-28  Andreas Jaeger  <aj@suse.de>
400         * oldsemaphore.c (__old_sem_init): Adjust for last change.
401         * sysdeps/pthread/bits/libc-lock.h: Likewise.
402         * spinlock.c: Likewise.
404 2001-01-28  Ulrich Drepper  <drepper@redhat.com>
406         * sysdeps/pthread/bits/initspin.h: Make all names namespace clean.
407         * sysdeps/unix/sysv/linux/hppa/bits/initspin.h: Likewise.
408         * manager.c: Adjust for namespace cleanup in bits/initspin.h.
409         * pthread.c: Likewise.
410         * spinlock.h: Likewise.
411         * sysdeps/pthread/pthread.h: Likewise.
413 2001-01-26  Ulrich Drepper  <drepper@redhat.com>
415         * sysdeps/pthread/bits/pthreadtypes.h: Define pthread_attr_t also
416         as struct __pthread_attr_s.
418         * semaphore.h (sem_t): Cleanup namespace, rename status and
419         spinlock elements.
421 2001-01-13  Jakub Jelinek  <jakub@redhat.com>
423         * pthread.c (pthread_onexit_process): Clear
424         __pthread_manager_thread_bos after freeing it.
425         * Makefile (tests): Add ex16.
426         * Examples/ex16.c: New file.
428 2001-01-11  Jakub Jelinek  <jakub@redhat.com>
430         * Makefile (CFLAGS-pthread.c): Pass -DHAVE_Z_NODELETE if ld supports
431         -z nodelete.
432         * pthread.c (pthread_exit_process): Rename to...
433         (pthread_onexit_process): ...this.
434         (pthread_atexit_process, pthread_atexit_retcode): New.
435         (pthread_initialize): Call __cxa_atexit instead of __cxa_on_exit
436         and only if HAVE_Z_NODELETE is not defined.
437         (__pthread_initialize_manager): Register pthread_atexit_retcode
438         with __cxa_atexit.
440 2001-01-11  Ulrich Drepper  <drepper@redhat.com>
442         * pthread.c (pthread_initialize): Use __cxs_on_exit not __cxa_atexit.
444 2001-01-11  Jakub Jelinek  <jakub@redhat.com>
446         * Makefile (tests): Add ex15.
447         * Examples/ex15.c: New test.
449 2001-01-08  Ulrich Drepper  <drepper@redhat.com>
451         * pthread.c (pthread_exit_process): Free memory allocated for
452         manager stack.
454 2000-12-31  Ulrich Drepper  <drepper@redhat.com>
456         * manager.c (pthread_alloca_stack): Remove MAP_FIXED from mmap calls.
457         (pthread_free): Always unmap the stack.  It's safe now that we don't
458         use MAP_FIXED to allocate stacks.
460 2000-12-31  Ulrich Drepper  <drepper@redhat.com>
462         * sysdeps/powerpc/pspinlock.c: Don't include pt-machine.h here.
464         * manager.c (pthread_allocate_stack): Prepare for removal of MAP_FIXED.
466 2000-11-15  Wolfram Gloger  <wg@malloc.de>
468         * manager.c (pthread_free): [!FLOATING_STACKS]: Only remap the
469         stack to PROT_NONE, don't unmap it, avoiding collisions with malloc.
471 2000-12-27  Andreas Jaeger  <aj@suse.de>
473         * Examples/ex13.c: Make local functions static.
474         * ecmutex.c: Likewise.
475         * joinrace.c: Likewise.
476         * Examples/ex14.c: Likewise.
478         * Examples/ex2.c: Make local functions static; reformat.
479         * Examples/ex1.c: Likewise.
480         * Examples/ex4.c: Likewise.
481         * Examples/ex5.c: Likewise.
482         * Examples/ex7.c: Likewise.
484         * oldsemaphore.c: Add prototypes to shut up GCC.
485         * pt-machine.c: Likewise.
487         * weaks.c: Add prototype for pthread_exit.
489         * internals.h: Add some prototypes, format prototypes and add
490         missing externs.
491         Move __libc_waitpid prototype to include/sys/wait.h.
493         * rwlock.c: Include <bits/libc-lock.h> for prototypes.
494         * mutex.c: Likewise.
495         * specific.c: Likewise.
496         * ptfork.c: Likewise.
498         * lockfile.c: Include internals.h to get prototypes.
499         * events.c: Likewise.
500         * sysdeps/alpha/pspinlock.c: Likewise.
501         * sysdeps/arm/pspinlock.c: Likewise.
502         * sysdeps/hppa/pspinlock.c: Likewise.
503         * sysdeps/i386/pspinlock.c: Likewise.
504         * sysdeps/ia64/pspinlock.c: Likewise.
505         * sysdeps/m68k/pspinlock.c: Likewise.
506         * sysdeps/mips/pspinlock.c: Likewise.
507         * sysdeps/powerpc/pspinlock.c: Likewise.
508         * sysdeps/s390/pspinlock.c: Likewise.
509         * sysdeps/sh/pspinlock.c: Likewise.
510         * sysdeps/sparc/sparc32/pspinlock.c: Likewise.
511         * sysdeps/sparc/sparc32/sparcv9/pspinlock.c: Likewise.
512         * sysdeps/sparc/sparc64/pspinlock.c: Likewise.
514 2000-12-27  Ulrich Drepper  <drepper@redhat.com>
516         * attr.c (__pthread_attr_setstack): Fix setting of __stackaddr element.
517         (__pthread_attr_getstack): Return correct address.
518         Add warnings for using pthread_attr_getstackaddr and
519         pthread_attr_setstackaddr.
521 2000-12-26  Ulrich Drepper  <drepper@redhat.com>
523         * Examples/ex6.c (test_thread): Make static.
524         * Examples/ex12.c (test_thread): Make static and add noreturn
525         attribute.
527 2000-12-18  Jes Sorensen  <jes@linuxcare.com>
529         * linuxthreads/sysdeps/ia64/pt-machine.h: __compare_and_swap
530         and compare_and_swap_with_release_semantics returns int not long.
532 2000-12-17  Andreas Jaeger  <aj@suse.de>
534         * sysdeps/s390/pt-machine.h (testandset): Use long int as return
535         value.
536         * sysdeps/arm/pt-machine.h (testandset): Likewise.
537         * sysdeps/hppa/pt-machine.h (testandset): Likewise.
538         * sysdeps/m68k/pt-machine.h (testandset): Likewise.
539         * sysdeps/sh/pt-machine.h (testandset): Likewise.
540         * sysdeps/sparc/sparc32/pt-machine.h (testandset): Likewise.
541         * sysdeps/sparc/sparc64/pt-machine.h (testandset): Likewise.
543 2000-12-17  Ulrich Drepper  <drepper@redhat.com>
545         * sysdeps/i386/pt-machine.h (testandset): Adjust for prototype change.
546         * sysdeps/i386/i686/pt-machine.h (testandset): Likewise.
548 2000-12-17  Andreas Jaeger  <aj@suse.de>
550         * internals.h: Add prototypes for testandset and
551         __compare_and_swap to shut up gcc warnings.
553 2000-12-06  Wolfram Gloger  <wg@malloc.de>
555         * join.c (pthread_detach): Allow case where the thread has already
556         terminated.
558 2000-12-05  Andreas Jaeger  <aj@suse.de>
560         * sysdeps/mips/pspinlock.c (__pthread_spin_lock): Don't set mips2.
561         * sysdeps/mips/pt-machine.h (testandset): Likewise.
562         (__compare_and_swap): Likewise.
563         Patches by Maciej W. Rozycki <macro@ds2.pg.gda.pl>.
565 2000-11-20  Jakub Jelinek  <jakub@redhat.com>
567         * Examples/ex3.c (main): Cast int to long before casting to void *.
568         (search): Cast void * to long, not int.
569         * Examples/ex8.c (main, thread): Similarly.
570         * Examples/ex11.c (main): Similarly.
571         * Examples/ex14.c (worker, do_test): Similarly.
572         * ecmutex.c (worker, do_test): Similarly.
573         (nlocks): Cast to int.
575 2000-11-08  Bruce Mitchener  <bruce@cubik.org>
577         * linuxthreads.texi:  Add documentation for pthreads attributes
578         guardsize, stackaddr, stacksize, and stack.  Fix typo in previous
579         patch.  Document pthread_[sg]etconcurrency().  Mark
580         pthread_mutexattr_[sg]ettype() as POSIX rather than GNU.
582 2000-11-07  Ulrich Drepper  <drepper@redhat.com>
584         * sysdeps/unix/sysv/linux/bits/posix_opt.h (_POSIX_MESSAGE_PASSING):
585         Don't define it.
586         * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: Likewise.
587         Reported by Christopher Yeoh <cyeoh@linuxcare.com.au>.
589 2000-11-06  Ulrich Drepper  <drepper@redhat.com>
591         * cancel.c (pthread_cancel): Always set p_canceled, even if we are
592         not doing it right now.
593         Reported by Kaz Kylheku <kaz@ashi.footprints.net>.
595 2000-10-30  Ulrich Drepper  <drepper@redhat.com>
597         * Examples/ex4.c (main): Don't use exit() to avoid warning with
598         broken compilers.
600 2000-10-29  Ulrich Drepper  <drepper@redhat.com>
602         * attr.c (__pthread_attr_setguardsize): Don't round guardsize
603         here.  Reported by Bruce Mitchener <bruce@cubik.org>.
605         * linuxthreads.texi: Changes terminology to 'type' from 'kind' when
606         discussing mutexes. (As per the Unix98 name for the API.)
607         Changes documentation for pthread_mutexattr_setkind_np() and
608         pthread_mutexattr_getkind_np() over to the Unix98 APIs for the
609         same: pthread_mutexattr_settype() and pthread_mutexattr_gettype().
610         Changes references to PTHREAD_MUTEXATTR_FAST_NP to
611         PTHREAD_MUTEXATTR_ADAPTIVE_NP.
612         Begins to introduce discussion of the ``timed'' mutex type.  This
613         discussion is currently incomplete.
614         Patch by Bruce Mitchener <bruce@cubik.org>.
616 2000-10-26  Kazumoto Kojima  <kkojima@rr.iij4u.or.jp>
617             Yutaka Niibe  <gniibe@chroot.org>
619         * sysdeps/sh/pt-machine.h (testandset): Since the operand of TAS.B
620         has restrictions, use register.
622 2000-10-23  Andreas Schwab  <schwab@suse.de>
624         * Examples/ex14.c (TIMEOUT): Override default timeout.
626 2000-10-16  Ulrich Drepper  <drepper@redhat.com>
628         * specific.c: Protect tsd array modification in thread data
629         structures by getting the thread lock in pthread_key_delete and
630         __pthread_destroy_specifics.
631         Patch by Wolfram Gloger <Wolfram.Gloger@dent.med.uni-muenchen.de>.
633 2000-10-12  Alan Modra <alan@linuxcare.com.au>
635         * sysdeps/pthread/bits/initspin.h: New file.
636         * spinlock.h: Move LOCK_INITIALIZER definition to <bits/initspin.h>.
637         (__pthread_init_lock): Initialize lock with LT_SPINLOCK_INIT.
638         (__pthread_alt_init_lock): Likewise.
639         (__pthread_alt_trylock): Release lock with LT_SPINLOCK_INIT.
641 2000-10-12  David Huggins-Daines  <dhd@linuxcare.com>
643         * oldsemaphore.c (__old_sem_init): Release lock with
644         LT_SPINLOCK_INIT, not zero.
645         * spinlock.c (__pthread_unlock): Likewise.
646         (__pthread_alt_lock): Likewise.
647         (__pthread_alt_timedlock): Likewise.
648         (__pthread_alt_unlock): Likewise.
649         * sysdeps/pthread/bits/libc-lock.h: Initialize locks with
650         LT_SPINLOCK_INIT if it is non-zero.  Likewise for init-once flags.
651         * sysdeps/pthread/pthread.h: Include bits/initspin.h.  Use
652         LT_SPINLOCK_INIT do initialize spinlocks not 0.
654 2000-10-12  David Huggins-Daines <dhd@linuxcare.com>
656         * shlib-versions: Add version definitions for hppa-linux.
658 2000-10-12  Alan Modra <alan@linuxcare.com.au>
660         * sysdeps/hppa/pspinlock.c: New file.
661         * sysdeps/hppa/pt-machine.h: New file.
662         * sysdeps/unix/sysv/linux/hppa/bits/initspin.h: New file.
664 2000-10-05  Jakub Jelinek  <jakub@redhat.com>
666         * mutex.c (__pthread_mutex_destroy): Correct test of
667         busy mutex for mutexes using alternate fastlocks.
668         Patch by dtc@cmucl.cons.org.
670 2000-09-28  Martin Schwidefsksy    <schwidefsky@de.ibm.com>
672         * sysdeps/s390/pt-machine.h: Make %a0 the thread register.
674 2000-09-28  Ulrich Drepper  <drepper@redhat.com>
676         * mutex.c (__pthread_mutex_unlock): For PTHREAD_MUTEX_RECURSIVE_NP
677         test for owner first.
678         Patch by Kaz Kylheku <kaz@ashi.footprints.net>.
680         * cancel.c (pthread_cancel): Don't do anything if cancelation is
681         disabled.
683 2000-09-26  Ulrich Drepper  <drepper@redhat.com>
685         * spinlock.h (__pthread_set_own_extricate_if): Optimize a bit.
686         Patch by Kaz Kylheku <kaz@ashi.footprints.net>.
688         * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: Remove
689         _POSIX_MONOTONIC_CLOCK.
691         * spinlock.h (__pthread_set_own_extricate_if): Add back locking
692         and explain why.
694 2000-09-20  Andreas Jaeger  <aj@suse.de>
696         * pthread.c [!__ASSUME_REALTIME_SIGNALS]: Make inclusion of
697         "testrtsig.h" conditional.
699 2000-09-11  Ulrich Drepper  <drepper@redhat.com>
701         * sysdeps/pthread/pthread.h: Declare pthread_attr_getstack and
702         pthread_attr_setstack.
703         * Versions [libpthread] (GLIBC_2.2): Export pthread_attr_getstack and
704         pthread_attr_setstack.
705         * attr.c (pthread_attr_getstack, pthread_attr_setstack): New functions.
707 2000-09-05  Ulrich Drepper  <drepper@redhat.com>
709         * Examples/ex14.c: New file.
710         * Makefile (tests): Add ex14.
712         * mutex.c (__pthread_mutex_unlock): Correct test for already unlocked
713         mutex.  Patch by dtc@cmucl.cons.org.
715         * ecmutex.c: New file.
716         * Makefile (tests): Add ecmutex.
718 2000-09-04  H.J. Lu  <hjl@gnu.org>
720         * attr.c (__pthread_attr_setguardsize): Use page_roundup
721         instead of roundup to round up to the page size.
723 2000-09-03  Mark Kettenis  <kettenis@gnu.org>
725         * manager.c (pthread_exited): Correctly report event as TD_REAP
726         instead of TD_DEATH.  Fix comments.
728 2000-09-03  Ulrich Drepper  <drepper@redhat.com>
730         * spinlock.h (testandset): Add cast to avoid warning.
731         Patch by Franz Sirl <Franz.Sirl-kernel@lauterbach.com>.
733 2000-09-02  Andreas Jaeger  <aj@suse.de>
735         * sysdeps/pthread/timer_routines.c: Include stdlib.h for abort
736         prototype.
738 2000-09-01  Ulrich Drepper  <drepper@redhat.com>
740         * sysdeps/pthread/bits/stdio-lock.h (_IO_cleanup_region_start):
741         Fix typo in last patch (_mode -> _flags).
743         * sysdeps/pthread/bits/stdio-lock.h (_IO_cleanup_region_start):
744         Provide definition which respects _IO_USER_LOCK flag.
746 2000-08-30  Ulrich Drepper  <drepper@redhat.com>
748         * manager.c (pthread_allocate_stack): Clear descriptor only if not
749         mmaped.
751 2000-08-25  Ulrich Drepper  <drepper@redhat.com>
753         * Makefile: Add rules to build and run unload.
754         * unload.c: New file.
756         * pthread.c (pthread_exit_process): Move thread_self use inside `if'.
758         * sysdeps/pthread/pthread.h
759         (PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP): Defined.
760         (PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP: Defined.
762 2000-08-24  Andreas Jaeger  <aj@suse.de>
764         * Examples/ex13.c: Include <string.h> for strerror prototype and
765         <stdlib.h> for abort prototype.
766         (pthr_cond_signal_mutex): Rewrite to silence GCC.
767         (thread_start): Remove unused variable err.
768         (main): Silence GCC warnings.
770 2000-08-22  Andreas Jaeger  <aj@suse.de>
772         * Examples/ex13.c: New test by Kurt Garloff <garloff@suse.de>.
774         * Makefile (tests): Add ex13.
776 2000-08-20  Ulrich Drepper  <drepper@redhat.com>
778         * semaphore.h: Add restrict where required by AGd4.
779         * sysdeps/pthread/pthread.h: Likewise.
780         * sysdeps/pthread/unix/sysv/linux/bits/sigthread.h: Likewise.
782 2000-08-15  Ulrich Drepper  <drepper@redhat.com>
784         * Makefile (tests): Add ex12.  Add rule to build it.
785         * Examples/ex12.c: New file.
787 2000-08-13  Ulrich Drepper  <drepper@redhat.com>
789         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Define _POSIX_SEMAPHORES
790         even though the implementation is not quite complete (but it reports
791         it).  Define _POSIX_MESSAGE_PASSING to -1.
792         * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: Likewise.
794 2000-08-12  Andreas Jaeger  <aj@suse.de>
796         * sysdeps/mips/pt-machine.h (testandset): Add .set mips2 for
797         assembler.
798         (__compare_and_swap): Likewise.
799         * sysdeps/mips/pspinlock.c (__pthread_spin_lock): Likewise.
801 2000-08-10  Ulrich Drepper  <drepper@redhat.com>
803         * pthread.c (__pthread_initial_thread): Initialize p_errnop and
804         p_h_errnop correctly and not to NULL.
806 2000-08-05  Ulrich Drepper  <drepper@redhat.com>
808         * Banner: Bump version number to 0.9.
810 2000-08-04  Ulrich Drepper  <drepper@redhat.com>
812         * Makefile (tests): Add tststack.  Add rule to build the program.
813         * tststack.c: New file.
815         * internals.h: Declare __pthread_max_stacksize.
816         * pthread.c (__pthread_max_stacksize): New variable.
817         (__pthread_initialize_manager): Determine __pthread_initialize_manager
818         value.
819         * manager.c (thread_segment): Return always NULL if FLOATING_STACKS.
820         (pthread_allocate_stack): Allow kernel to choose stack address if
821         FLOATING_STACKS.  This also handles variable-sized stacks.
822         Always allocate stack and guardpage together.  Use mprotect to
823         change guardpage access.
824         * sysdeps/i386/useldt.h: Define FLOATING_STACKS and
825         ARCH_STACK_MAX_SIZE.
827         * attr.c (__pthread_attr_setstacksize): Also test value against
828         upper limit.
830         * manager.c (__pthread_nonstandard_stacks): Define only if
831         THREAD_SELF is not defined.
832         (pthread_allocate_stack): Always initialize gardaddr to a correct
833         value.
834         (pthread_handle_create): Unmap thread with one call.
835         (pthread_free): Remove test for initial thread before removing stack.
836         Unmap stack with one call.
838         * pthread.c (__pthread_initial_thread): Initialize p_userstack to
839         1 to avoid removing the stack.
841 2000-07-27  Jes Sorensen  <jes@linuxcare.com>
843         * sysdeps/ia64/pspinlock.c (__pthread_spin_lock): Add
844         load of spin lock to prime the cache before the atomic compare and
845         exchange operation (cmpxchg4). This avoids the spinning on the
846         cmpxchg4 instruction and reduces movement of the cache line back
847         and forth between the processors (explanation by Asis K. Mallick
848         from Intel). This basically makes the implementation operate the
849         same as the Linux kernel implementation.
851         * shlib-versions: Use GLIBC_2_2 for Linux/ia64.
852         * sysdeps/ia64/pspinlock.c: New file.
854 2000-08-03  Ulrich Drepper  <drepper@redhat.com>
856         * pthread.c: Move definition of __pthread_set_own_extricate_if...
857         * spinlock.h: ...here.  Remove locking.
858         * internals.h: Remove __pthread_set_own_extricate_if prototype.
860         * rwlock.c: Use THREAD_GETMEM And THREAD_SETMEM.
861         (rwlock_rd_extricate_func): Don't determine self, let
862         __pthread_lock do it.
863         (rwlock_wr_extricate_func): Likewise.
864         (rwlock_have_already): Optimize *pself handling a bit.
866         * mutex.c: Use __builtin_expect.
867         * pthread.c: Likewise.
869 2000-08-02  Andreas Jaeger  <aj@suse.de>
871         * sysdeps/s390/pspinlock.c: New file.
872         * sysdeps/s390/pt-machine.h: New file.
873         Patches by Martin Schwidefsky <schwidefsky@de.ibm.com>.
875 2000-07-12  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
877         * sysdeps/mips/pspinlock.c (__pthread_spin_lock): Implement for
878         R3K.
879         * sysdeps/mips/pt-machine.h (testandset): Likewise.
881 2000-07-26  Andreas Jaeger  <aj@suse.de>
883         * pthread.c: Initialize p_sem_avail.
885 2000-07-25  Ulrich Drepper  <drepper@redhat.com>
887         * internals.h (struct __pthread_descr_struct): Add p_sem_avail.
888         * semaphore.c: Handle spurious wakeups.
890         * sysdeps/pthread/pthread.h: Add back PTHREAD_MUTX_FAST_NP as an alias
891         for PTHREAD_MUTEX_ADAPTIVE_NP for source code compatibility.
893         * pthread.c (__pthread_set_own_extricate): Use THREAD_GETMEM.
894         (__pthread_wait_for_restart): Likewise.
896         * condvar.c (pthread_cond_wait): Also check whether thread is
897         cancelable before aborting loop.
898         (pthread_cond_timedwait): Likewise.
900         * signals.c (pthread_sighandler): Remove special code to restrore
901         %gs on x86.
902         (pthread_sighandler_t): Likewise.
904 2000-07-25  Mark Kettenis  <kettenis@gnu.org>
906         * internals.h (__RES_PTHREAD_INTERNAL): Remove define.
907         * pthread.c: Include <resolv.h>.
908         (_res): Undefine.  Add extern declaration.
910 2000-07-24  Ulrich Drepper  <drepper@redhat.com>
912         * pthread.c (__pthread_initial_thread): Update initializer.
913         (__pthread_manager_thread): Likewise.
914         (pthread_initialize): Move setrlimit call to...
915         (__pthread_initialize_manager): ...here.
916         (__pthread_reset_main_thread): Reset also soft limit on stack size.
918         * condvar.c: Handle spurious wakeups.  [PR libc/1749].
919         * internals.h (struct _pthread_descr_struct): Add p_condvar_avail.
921 2000-07-21  Ulrich Drepper  <drepper@redhat.com>
923         * spinlock.h: If IMPLEMENT_TAS_WITH_CAS is defined use
924         __compare_and_swap to define testandset.
925         * sysdeps/powerpc/pt-machine.h: Add volatile to asms.
926         Define IMPLEMENT_TAS_WITH_CAS.
928 2000-07-20  Ulrich Drepper  <drepper@redhat.com>
930         * Makefile: Pass -z nodelete to linker for libpthread.so
931         generation if it understand this option.
933 2000-07-18  Mark Kettenis  <kettenis@gnu.org>
935         * manager.c (pthread_handle_create): Remove initialization of
936         new_thread->p_res._sock.
938 2000-07-19  Kaz Kylheku  <kaz@ashi.footprints.net>
940         Bugfixes to the variant of the code for machines with no compare
941         and swap.
943         * spinlock.c (__pthread_alt_lock, __pthread_alt_timedlock): Wait
944         node was not being properly enqueued, due to failing to update
945         the lock->__status field.
947         * spinlock.c (__pthread_alt_timedlock): The oldstatus variable was
948         being set inappropriately, causing the suspend function to be called
949         with a null self pointer and crash.
951 2000-07-18  Ulrich Drepper  <drepper@redhat.com>
953         * spinlock.h (__pthread_alt_trylock): Fix code used if no
954         compare&swap is available.
956         * spinlock.h (__pthread_trylock): Use __compare_and_swap, not
957         compare_and_swap.
959         * pthread.c (pthread_initialize): Don't use sysconf to determine
960         whether the machine has more than one processor.
962         * spinlock.c (__pthread_alt_timedlock): Add back one of the
963         removed thread_self calls.
965 2000-07-18  Kaz Kylheku  <kaz@ashi.footprints.net>
967         * spinlock.c (__pthread_alt_lock, __pthread_alt_timedlock): Changed
968         __compare_and_swap to compare_and_swap in code which assumes
969         compare swap is available.
971 2000-07-18  Kaz Kylheku  <kaz@ashi.footprints.net>
973         * spinlock.c (__pthread_alt_lock, __pthread_alt_timedlock): Fixed
974         bug whereby thr field of waitnode structure would not be correctly
975         set unless a null self pointer is passed to the functions.
976         Eliminated redundant calls to thread_self().
978 2000-07-18  Jakub Jelinek  <jakub@redhat.com>
980         * pthread.c (__pthread_initialize_manager): Lock
981         __pthread_manager_thread.p_lock before calling clone.
983 2000-05-05  H.J. Lu  <hjl@gnu.org>
985         * sysdeps/ia64/pt-machine.h (__compare_and_swap): Change it to
986         have acquire semantics.
987         (__compare_and_swap_with_release_semantics): New inline
988         function.
989         (HAS_COMPARE_AND_SWAP_WITH_RELEASE_SEMANTICS): New macro.
991 2000-01-28  Hans Boehm  <hboehm@exch.hpl.hp.com>
993         * manager.c: Fix the problem with signals at startup.
994         Change the way that thread stacks are allocated on IA64.
995         Clean up some of the guard page allocation stuff.
997 1999-12-19  H.J. Lu  <hjl@gnu.org>
999         * internals.h (page_roundup): New.
1000         * attr.c (__pthread_attr_setguardsize); Use page_roundup
1001         instead of roundup.
1002         * manager.c (pthread_allocate_stack): Make sure guardaddr is
1003         page aligned with page_roundup if NEED_SEPARATE_REGISTER_STACK
1004         is define.
1006 1999-12-17  Hans Boehm  <hboehm@exch.hpl.hp.com>
1008         * manager.c (pthread_allocate_stack): Unmap the stack top
1009         if failed to map the stack bottom.
1010         Fix the guard page.
1011         (pthread_free): Fix the guard page.
1013         * pthread.c (pthread_initialize): Set rlimit correctly for
1014         NEED_SEPARATE_REGISTER_STACK.
1016 1999-12-16  H.J. Lu  <hjl@gnu.org>
1018         * pthread.c (__pthread_initialize_manager): Pass
1019         __pthread_manager_thread_bos instead of
1020         __pthread_manager_thread_tos to __clone2.
1022 1999-12-16  H.J. Lu  <hjl@gnu.org>
1024         * manager.c (pthread_allocate_stack): Correct the calculation
1025         of "new_thread_bottom". Remove MAP_GROWSDOWN from mmap for
1026         stack bottom.
1028 1999-12-13  H.J. Lu  <hjl@gnu.org>
1030         * sysdeps/ia64/pt-machine.h (__compare_and_swap): Added a stop
1031         bit after setting ar.ccv.
1033 1999-12-12  H.J. Lu  <hjl@gnu.org>
1035         * manager.c (pthread_allocate_stack): Make the starting
1036         address of the stack bottom page aligned. FIXME: it may
1037         need changes in other places.
1038         (pthread_handle_create): Likewise.
1040 1999-12-11  Hans Boehm  <hboehm@exch.hpl.hp.com>
1042         * manager.c (pthread_allocate_stack): Handle
1043         NEED_SEPARATE_REGISTER_STACK.
1044         (pthread_handle_create): Likewise.
1045         * pthread.c (__pthread_initialize_manager): Likewise.
1047         * sysdeps/ia64/pt-machine.h: Use r13 for thread pointer.
1049 1999-12-02  H.J. Lu  <hjl@gnu.org>
1051         * sysdeps/ia64/pt-machine.h: New.
1053 2000-07-13  Ulrich Drepper  <drepper@redhat.com>
1055         * wrapsyscall.c: Mark non-__ protected names as weak.
1056         PR libc/1466.
1058 2000-07-12  Bruno Haible  <haible@clisp.cons.org>
1060         * Examples/ex8.c: Include <sys/wait.h>, not <wait.h>.
1062 2000-07-12  Ulrich Drepper  <drepper@redhat.com>
1064         * spinlock.c: Fix code for TEST_FOR_COMPARE_AND_SWAP being defined.
1065         Add tests also to new alternative spinlock implementation.
1066         * spinlock.h: Likewise.
1067         Patch by Kaz Kylheku <kaz@ashi.footprints.net>.
1069 2000-07-06  Ulrich Drepper  <drepper@redhat.com>
1071         * Version: Export __sigaction.
1072         * signals.c: Define __sigaction alias.  Use __libc_sigaction instead
1073         of __sigaction.
1074         * pthread.c: Use __libc_sigaction instead of __sigaction.
1076         * condvar.c: Implement pthread_condattr_getpshared and
1077         pthread_condattr_setpshared.
1078         * mutex.c: Implement pthread_mutexattr_getpshared and
1079          pthread_mutexattr_setpshared.
1080         * Versions: Export new functions.
1081         * sysdeps/pthread/pthread.h: Add prototypes for new functions.
1083         * rwlock.c (pthread_rwlockattr_init): Use PTHREAD_PROCESS_PRIVATE.
1084         (pthread_rwlockattr_setpshared): Fail if PTHREAD_PROCESS_PRIVATE
1085         is not selected.
1087 2000-07-04  Greg McGary  <greg@mcgary.org>
1089         * sysdeps/pthread/bits/libc-lock.h: Remove BP_SYM from
1090         pragmas.  Include bp-sym.h only if _LIBC.
1092 2000-07-04  Ulrich Drepper  <drepper@redhat.com>
1094         * spinlock.c (__pthread_unlock): Properly place write barrier.
1095         Patch by Kaz Kylheku <kaz@ashi.footprints.net>.
1097 2000-07-03  Ulrich Drepper  <drepper@redhat.com>
1099         * spinlock.c: Replace fast spinlocks by adaptive spinlocks which are
1100         faster on SMP systems.  No more emulation of compare&swap for adaptive
1101         spinlocks.
1102         * spinlock.h: Likewise.
1103         * sysdeps/pthread/pthread.h: Shuffle PTHREAD_MUTEX_* values around.
1104         Replace fast with adaptive mutex.
1105         * mutex.c: Rewrite for replacement of fast by adaptive mutex.
1106         * condvar.c: Likewise.
1107         * pthread.c: Define and initialize __pthread_smp_kernel variable.
1108         * internals.h: Declare __pthread_smp_kernel.
1109         * sysdeps/pthread/bits/pthreadtypes.h: Update comment of
1110         _pthread_fastlock structure.
1111         Patch by Kaz Kylheku <kaz@ashi.footprints.net>.
1113         * pthread.c: Remove initialization to zero from global variables.
1115 2000-06-29  Jakub Jelinek  <jakub@redhat.com>
1117         * shlib-versions: Make sparc64 GLIBC_2.2+ only.
1119 2000-06-28  Greg McGary  <greg@mcgary.org>
1121         * weaks.c: Wrap BP_SYM () around weak extern declarations of
1122         pthread functions that have pointers in their return+arg signatures.
1124 2000-06-27  Greg McGary  <greg@mcgary.org>
1126         * sysdeps/pthread/bits/libc-lock.h: Wrap BP_SYM () around weak
1127         extern declarations of pthread functions that have pointers in
1128         their return+arg signatures.
1130 2000-06-26  Ulrich Drepper  <drepper@redhat.com>
1132         * Makefile (tests): Add ex11.  Add rules to build it.
1133         * Examples/ex11.c: New file.
1134         * rwlock.c: Fix complete braindamaged previous try to implement
1135         timedout functions.
1137         * spinlock.c: Pretty print.
1139 2000-06-25  Ulrich Drepper  <drepper@redhat.com>
1141         * Makefile (tests): Add ex10.  Add rules to build it.
1142         * Versions [GLIBC_2.2] (libpthread): Add pthread_mutex_timedlock,
1143         pthread_rwlock_timedrdlock, and pthread_rwlock_timedwrlock.
1144         * condvar.c (pthread_cond_wait): Allow mutex of kind
1145         PTHREAD_MUTEX_TIMED_NP.
1146         (pthread_cond_timedwait_relative): Likewise.
1147         * mutex.c (__pthread_mutex_init): Default is PTHREAD_MUTEX_TIMED_NP.
1148         (__pthread_mutex_trylock): Use __pthread_alt_trylock for
1149         PTHREAD_MUTEX_ERRORCHECK_NP.  Handle PTHREAD_MUTEX_TIMED_NP.
1150         (__pthread_mutex_lock): Use __pthread_alt_lock for
1151         PTHREAD_MUTEX_ERRORCHECK_NP.  Handle PTHREAD_MUTEX_TIMED_NP.
1152         (__pthread_mutex_timedlock): New function.
1153         (__pthread_mutex_unlock): Use __pthread_alt_unlock for
1154         PTHREAD_MUTEX_ERRORCHECK_NP.  Handle PTHREAD_MUTEX_TIMED_NP.
1155         (__pthread_mutexattr_init): Use PTHREAD_MUTEX_TIMED_NP.
1156         (__pthread_mutexattr_settype): Allow PTHREAD_MUTEX_TIMED_NP.
1157         * spinlock.c: Implement alternate fastlocks.
1158         * spinlock.h: Add prototypes.
1159         * Examples/ex10.c: New file.
1160         * sysdeps/pthread/pthread.h: Add prototypes for new functions.
1161         Patch by Kaz Kylheku <kaz@ashi.footprints.net>.
1163         * rwlock.c (__pthread_rwlock_rdlock): Optimize loop a bit.
1164         (__pthread_rwlock_timedrdlock): New function.
1165         (__pthread_rwlock_timedwrlock): New function.
1166         Use laternate fastlock function everywhere.
1168 2000-06-21  Andreas Jaeger  <aj@suse.de>
1170         * sysdeps/pthread/timer_routines.c: Include <string.h> for memset
1171         prototype.
1173         * join.c: Include <stdlib.h> for exit prototype.
1175 2000-06-20  Ulrich Drepper  <drepper@redhat.com>
1177         * sysdeps/i386/useldt.h: Include <stdlib.h>.
1179         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Define _POSIX_BARRIERS.
1180         * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: Likewise.
1182         * Makefile (libpthread-routines): Add barrier.
1183         (tests): Add ex9.  Add rule to build ex9.
1184         * Versions: Export barrier functions.
1185         * barrier.c: New file.
1186         * Examples/ex9.c: New file.
1187         * sysdeps/pthread/pthread.h: Add barrier data types and declarations.
1188         * sysdeps/pthread/bits/pthreadtypes.h: Likewise.
1189         Patch by Kaz Kylheku <kaz@ashi.footprints.net>.
1191 2000-06-19  H.J. Lu  <hjl@gnu.org>
1193         * spinlock.h (HAS_COMPARE_AND_SWAP): Defined if
1194         HAS_COMPARE_AND_SWAP_WITH_RELEASE_SEMANTICS is defined.
1195         (compare_and_swap_with_release_semantics): New. Default to
1196         compare_and_swap if HAS_COMPARE_AND_SWAP_WITH_RELEASE_SEMANTICS
1197         is not defined.
1199         * spinlock.c (__pthread_unlock): Call
1200         compare_and_swap_with_release_semantics () instead of
1201         compare_and_swap ().
1203 2000-06-19  Ulrich Drepper  <drepper@redhat.com>
1205         * sysdeps/pthread/timer_create.c: Use _set_errno instead of assigning
1206         to errno directly.
1207         * sysdeps/pthread/timer_delete.c: Likewise.
1208         * sysdeps/pthread/timer_getoverr.c: Likewise.
1209         * sysdeps/pthread/timer_gettime.c: Likewise.
1210         * sysdeps/pthread/timer_settime.c: Likewise.
1212 2000-06-13  Kaz Kylheku  <kaz@ashi.footprints.net>
1214         Timer nodes are now reference counted, and can be marked
1215         as deleted. This allows for the safe release of the global mutex
1216         in the middle without losing the timer being operated on.
1218         * sysdeps/pthread/posix-timer.h (struct timer_node):  The inuse
1219         member is now an enum with three values, so that an intermediate
1220         state can be represented (deleted but not free for reuse yet).
1221         New refcount member added.
1222         * sysdeps/pthread/timer_routines.c: Likewise.
1224         * sysdeps/pthread/posix-timer.h (timer_addref, timer_delref,
1225         timer_valid): New inline functions added.
1227         * sysdeps/pthread/timer_gettime.c (timer_gettime): Function
1228         restructured, recursive deadlock bug fixed.
1230         * sysdeps/pthread/timer_gettime.c (timer_gettime): Uses new
1231         timer_addref to ensure that timer won't be deleted while mutex is not
1232         held. Also uses timer_invalid to perform validation of timer handle.
1233         * sysdeps/pthread/timer_settime.c (timer_settime): Likewise.
1234         * sysdeps/pthread/timer_getoverr.c (timer_getoverrun): Likewise.
1236 2000-06-14  Ulrich Drepper  <drepper@redhat.com>
1238         * shlib-versions: Add entry for SH.
1239         Patch by Kaz Kojima <kkojima@rr.iij4u.or.jp>.
1241 2000-06-13  Kaz Kylheku  <kaz@ashi.footprints.net>
1243         A few optimizations.  Got rid of unnecessary wakeups of timer threads,
1244         tightened up some critical regions and micro-optimized some list
1245         manipulation code.
1247         * sysdeps/pthread/timer_routines.c (__timer_thread_queue_timer):
1248         Returns int value now to indicate whether timer was queued at head.
1249         * sysdeps/pthread/posix-timer.h: Likewise.
1250         * sysdeps/pthread/timer_settime.c (timer_settime): Takes advantage of
1251         new return value from __timer_thread_queue_timer to avoid waking
1252         up timer thread unnecessarily.
1254         * sysdeps/pthread/posix-timer.h (timer_id2ptr): No longer checks
1255         inuse flag, because this requires mutex to be held.  Callers updated
1256         to do the check when they have the mutex.
1257         * sysdeps/pthread/timer_getoverr.c: Add check for inuse here.
1259         * sysdeps/pthread/timer_settime.c (timer_settime): Tighter critical
1260         regions: avoids making system calls while holding timer mutex, and
1261         a few computations were moved outside of the mutex as well.
1262         * sysdeps/pthread/timer_gettime.c (timer_gettime): Likewise.
1264         * sysdeps/pthread/posix-timer.h (list_unlink_ip): Function name changed
1265         to list_unlink_ip, meaning idempotent.  Pointer manipulation
1266         changed to get better better code out of gcc.
1267         * sysdeps/pthread/timer_routines.c (list_unlink): Non-idempotent
1268         version of list_unlink added here.
1269         * sysdeps/pthread/timer_delete.c: Use appropriate list unlink
1270         function in all places: idempotent one for timers, non-idempotent
1271         one for thread nodes.
1272         * sysdeps/pthread/timer_settime: Likewise.
1273         * sysdeps/pthread/timer_routines.c: Likewise.
1275 2000-06-13  Ulrich Drepper  <drepper@redhat.com>
1277         * sysdeps/unix/sysv/linux/bits/posix_opt.h (_POSIX_TIMERS): Define.
1278         * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: Likewise.
1280         * sysdeps/pthread/Makefile: Remove tests definition.
1282 2000-06-12  Kazumoto Kojima  <kkojima@rr.iij4u.or.jp>
1283             Yutaka Niibe  <gniibe@chroot.org>
1285         * sysdeps/sh/pspinlock.c: New file.
1286         * sysdeps/sh/pt-machine.h: New file.
1288 2000-06-12  Ulrich Drepper  <drepper@redhat.com>
1290         * Makefile (tests): Add joinrace.
1292         * Examples/ex6.c: Test return value of pthread_join.
1294 2000-06-11  Geoff Keating  <geoffk@cygnus.com>
1296         * sysdeps/powerpc/pspinlock.c (__pthread_spin_lock): Implement.
1297         (__pthread_spin_trylock): Implement.
1298         (__pthread_spin_unlock): Implement.
1299         (__pthread_spin_init): Implement.
1300         (__pthread_spin_destroy): Implement.
1302 2000-06-10  Ulrich Drepper  <drepper@redhat.com>
1304         * sysdeps/pthread/timer_routines.c (list_append): Little fix to
1305         really append the entry.
1307 2000-06-10  Andreas Jaeger  <aj@suse.de>
1309         * lockfile.c (__fresetlockfiles): Remove unused variable fp.
1311 2000-06-10  Kaz Kylheku  <kaz@ashi.footprints.net>
1313         * sysdeps/pthread/timer_create.c: Thread matching now done on
1314         clock type as well as thread attributes.
1315         There are individual global signal-delivering threads for
1316         different clock types.
1317         * sysdeps/pthread/posix-timer.h: Likewise.
1318         * sysdeps/pthread/timer_routines.c: Likewise.
1320         * sysdeps/pthread/timer_routines.c: Thread allocation and
1321         deallocation function now remembers to put thread on active
1322         list and remove from active list.
1323         Thus now the feature of binding multiple timers
1324         to a single thread actually works.
1326 2000-06-10  Ulrich Drepper  <drepper@redhat.com>
1328         * pthread.c (__pthread_create_2_1): Optimize a bit.
1330         * internals.h (invalid_handle): Also test for p_terminated != 0.
1331         (nonexisting_handle): New function.  Same as old invalid_handle.
1332         * join.c (pthread_join): Use nonexisting_handle instead of
1333         invalid_handle to test for acceptable thread handle.
1334         * manager.c (pthread_handle_free): Likewise.
1335         * joinrace.c: New file.
1336         Reported by Permaine Cheung <pcheung@cygnus.com>.
1338 2000-06-08  Ulrich Drepper  <drepper@redhat.com>
1340         * sysdeps/pthread/timer_routines.c (__timer_thread_queue_timer):
1341         Correct handling of matching variable.
1343         * sysdeps/pthread/tst-timer.c (main): Rewrite initializers to
1344         avoid warnings.
1346         * sysdeps/pthread/timer_routines.c (__timer_thread_queue_timer):
1347         Be prepared for empty timer list.
1349         * sysdeps/pthread/timer_create.c (timer_create): Correct names of
1350         CPUTIME clock ID.  Add support for thread clocks.
1352         * sysdeps/pthread/posix-timer.h (timer_ptr2id): Operands in
1353         subtraction were switched.
1355         * sysdeps/pthread/timer_routines.c (init_module): Use
1356         THREAD_MAXNODES threads.
1358         * sysdeps/pthread/posix-timer.h (struct timer_node): Add creator_pid.
1359         * sysdeps/pthread/timer_create.c: Fill in creator_pid.
1360         * sysdeps/pthread/timer_routines.c (thread_expire_timer): Send signal
1361         with sigqueueinfo is this system call is available.
1363         * sysdeps/pthread/timer_create.c (timer_create): Allow
1364         CLOCK_CPUTIME if _POSIX_CPUTIME is defined.
1366         * sysdeps/pthread/Makefile: New file.  Add rules to build timer
1367         functionality.
1368         * sysdeps/unix/sysv/linux/bits/local_lim.h: Add TIMER_MAX.
1370 2000-06-04  Kaz Kylheku  <kaz@ashi.footprints.net>
1372         * sysdeps/pthread/posix-timer.h: New file.
1373         * sysdeps/pthread/timer_create.c: New file.
1374         * sysdeps/pthread/timer_delete.c: New file.
1375         * sysdeps/pthread/timer_getoverr.c: New file.
1376         * sysdeps/pthread/timer_gettime.c: New file.
1377         * sysdeps/pthread/timer_routines.c: New file.
1378         * sysdeps/pthread/timer_settime.c: New file.
1379         * sysdeps/pthread/tst-timer.c: New file.
1381 2000-06-08  Ulrich Drepper  <drepper@redhat.com>
1383         * sysdeps/unix/sysv/linux/bits/local_lim.h: Remove OPEN_MAX and
1384         LINK_MAX definitions if necessary.
1386 2000-06-04  Kaz Kylheku  <kaz@ashi.footprints.net>
1388         Added missing fork time handling of global libio lock.
1390         * lockfile.c (__fresetlockfiles): Now also resets the list lock,
1391         not just the individual stream locks. Rewritten to use new
1392         iterator interface provided by libio rather than accessing
1393         global variable.
1395         * lockfile.c (__flockfilelist, _funlockfilelist): New functions
1396         which lock and unlock the stream list using the new interface
1397         provied by libio.
1398         * internals.h: Likewise.
1400         * ptfork.c (__fork): Now calls __flockfilelist before fork,
1401         and __funlockfilelist in the parent after the fork.
1402         Child still calls __fresetlockfiles as before.
1404         * linuxthreads.texi: Now explains what happens to streams at
1405         fork time. Also whole new section on forking and thread added.
1406         Definition of pthread_atfork moved out of Miscellaneous Functions
1407         to this new section.
1409 2000-06-04  Jakub Jelinek  <jakub@redhat.com>
1411         * sysdeps/sparc/sparc32/sparcv9/pspinlock.c (__pthread_spin_lock):
1412         Add missing register.
1413         * sysdeps/sparc/sparc64/pspinlock.c (__pthread_spin_lock): Likewise.
1415 2000-06-02  Jakub Jelinek  <jakub@redhat.com>
1417         * sysdeps/sparc/sparc32/pspinlock.c: Implement spinlocks.
1418         * sysdeps/sparc/sparc32/sparcv9/pspinlock.c: New.
1419         * sysdeps/sparc/sparc64/pspinlock.c: Implement spinlocks.
1421 2000-05-31  Andreas Jaeger  <aj@suse.de>
1423         * sysdeps/mips/pspinlock.c: Implement spinlocks.
1425 2000-05-28  Ulrich Drepper  <drepper@redhat.com>
1427         * spinlock.c (__pthread_lock): Remove ASSERT.
1429         * Makefile (tests): Add ex8.
1430         * Examples/ex8.c: New file.
1432 2000-05-12  Kaz Kylheku  <kaz@ashi.footprints.net>
1434         Bugfix: The pthread_atfork mechanism now takes care of its
1435         own internal mutex at fork time.
1437         * ptfork.c (__fork): Revised so that the mutex is held across
1438         the fork operation and while the handlers are called, and so that
1439         the child resets the mutex.
1441         * linuxthreads.texi: Updated pthread_atfork documentation to make
1442         it clear that fork and pthread_atfork can't be reentered from
1443         atfork handlers, that pthread_atfork and fork are mutually atomic,
1444         and that the handlers are inherited by the child process.
1446 2000-05-24  Ulrich Drepper  <drepper@redhat.com>
1448         * Makefile (libpthread-routines): Add pspinlock.
1449         * cancel.c: Rename __pthread_spin_unlock back to __pthread_unlock.
1450         Use struct _pthread_fastlock instead of pthread_spinlock_t.
1451         * condvar.c: Likewise.
1452         * internals.h: Likewise.
1453         * join.c: Likewise.
1454         * manager.c: Likewise.
1455         * mutex.c: Likewise.
1456         * pthread.c: Likewise.
1457         * rwlock.c: Likewise.
1458         * semaphore.c: Likewise.
1459         * signals.c: Likewise.
1460         * spinlock.h: Likewise.
1461         * spinlock.c: Likewise.  Remove pthread_spin_lock functions.
1462         * sysdeps/alpha/pspinlock.c: New file.
1463         * sysdeps/arm/pspinlock.c: New file.
1464         * sysdeps/i386/pspinlock.c: New file.
1465         * sysdeps/m68k/pspinlock.c: New file.
1466         * sysdeps/mips/pspinlock.c: New file.
1467         * sysdeps/powerpc/pspinlock.c: New file.
1468         * sysdeps/sparc/sparc32/pspinlock.c: New file.
1469         * sysdeps/sparc/sparc64/pspinlock.c: New file.
1470         * sysdeps/pthread/bits/pthreadtypes.h: Remove pthread_spinlock_t
1471         back to _pthread_fastlock.  Define new pthread_spinlock_t.
1473 2000-05-24  Andreas Jaeger  <aj@suse.de>
1475         * sysdeps/i386/i686/pt-machine.h: Only use LDT on newer kernels.
1477 2000-05-21  Jakub Jelinek  <jakub@redhat.com>
1479         * manager.c (pthread_handle_create): Initialize p_res._sock to -1.
1481 2000-05-13  Jakub Jelinek  <jakub@redhat.com>
1483         * internals.h (__RES_PTHREAD_INTERNAL): Define.
1485 2000-05-06  Kaz Kylheku  <kaz@ashi.footprints.net>
1487         * mutex.c (pthread_once): IN_PROGRESS state of pthread_once_t
1488         object state is represented with additional bits which distinguish
1489         whether that state was set up in the current process, or
1490         in an ancestor process. If that state was set in an ancestor,
1491         it means that a fork happened while thread was executing the init
1492         function. In that case, the state is reset to NEVER.
1493         * mutex.c (__pthread_once_fork_prepare): New function.
1494         (__pthread_once_fork_child): Likewise
1495         (__pthread_once_fork_parent): Likewise
1496         (__pthread_reset_pthread_once): Removed.
1497         * ptfork.c (__fork): Call new handlers in mutex.c.
1498         * internals.h: Declarations of new mutex.c functions added.
1499         Declaration of removed function deleted.
1500         * linuxthreads.texi: Updated documentation about pthread_once
1501         to clarify what happens under cancellation and forking.
1503 2000-05-06  Kaz Kylheku  <kaz@ashi.footprints.net>
1505         * internals.h: New thread manager request type, REQ_KICK.
1506         * join.c (pthread_exit): main thread now calls exit() instead
1507         of _exit() in order to proper process cleanup.
1508         * manager.c (__pthread_manager): Do not terminate manager
1509         after unblocking main thread; wait for main thread's
1510         REQ_PROCESS_EXIT request instead.
1511         Also, added REQ_KICK case to handle new request; this just does
1512         nothing.
1513         * manager.c (pthread_exited): Do not terminate manager after
1514         unblocking main thread.
1515         * manager.c (__pthread_manager_sighandler): If the main thread
1516         is waiting for all other threads to die, send a REQ_KICK into
1517         the thread manager request pipe to get it to clean out the threads
1518         and unblock the main thread as soon as possible. This fixes
1519         the 2000 millisecond hang on shutdown bug.
1520         * Examples/ex7.c: New file, tests shutdown behavior when all threads
1521         including the main one call pthread_exit(), or implicitly do so.
1522         * Makefile (tests): Add ex7.
1524 2000-05-05  Andreas Jaeger  <aj@suse.de>
1526         * sysdeps/unix/sysv/linux/i386/getcpuclockid.c
1527         (pthread_getcpuclockid): Correct test for ourselves.
1529 2000-05-05  Ulrich Drepper  <drepper@redhat.com>
1531         * internals.h (struct _pthread_descr_struct): Reorganization.
1532         Allocate room for 16 pointers at head of the structure for future
1533         thread-local data handling.  Move p_self member in this area.
1534         * manager.c (pthread_handle_create): Adjust use of p_self.
1535         * sysdeps/i386/useldt.h (THREAD_SELF): Likewise.
1536         * pthread.c (__pthread_initial_thread): Adjust initialization.
1537         (__pthread_manager_thread): Likewise.
1539 2000-04-29  Bruno Haible  <haible@clisp.cons.org>
1541         * join.c (pthread_exit): Use THREAD_GETMEM_NC instead of THREAD_GETMEM
1542         for eventmask larger than 1 word.
1544 2000-04-27  Ulrich Drepper  <drepper@redhat.com>
1546         * Versions [libpthread] (GLIBC_2.2): Add __pthread_initialize_minimal.
1547         * pthread.c (__pthread_initialize_minimal): New function.  Perform
1548         minimal initialization.
1549         (pthread_initialize): Remove this code here.
1550         * sysdeps/i386/i686/pt-machine.h: Include "../useldt.h" again.  We
1551         are working around the problem in glibc.
1553 2000-04-25  Ulrich Drepper  <drepper@redhat.com>
1555         * sysdeps/i386/i686/pt-machine.h: Do not use "../useldt.h" for
1556         now.  First gcc must be fixed (more concrete: libgcc).
1558 2000-04-24  Ulrich Drepper  <drepper@redhat.com>
1560         * pthread.c: Remove special treatement for interrupt handlers on x86.
1561         * manager.c (pthread_free): Use FREE_THREAD not FREE_THREAD_SELF.
1562         * sysdeps/i386/useldt.h: Use "q" constraint instead of "r" where
1563         necessary.
1564         * sysdeps/i386/i686/pt-machine.h: Include "../useldt.h".
1566 2000-04-24  Mark Kettenis  <kettenis@gnu.org>
1568         * join.c (pthread_exit): Set p_terminated after reporting the
1569         termination event instead of before.
1571 2000-04-20  Jakub Jelinek  <jakub@redhat.com>
1573         * sysdeps/pthread/bits/libc-lock.h: Only declare __pthread_rwlock_*
1574         if __USE_UNIX98.
1576 2000-04-18  Andreas Jaeger  <aj@suse.de>
1578         * Versions: Use ld instead of ld.so.
1580 2000-04-18  Jakub Jelinek  <jakub@redhat.com>
1582         * sysdeps/unix/sysv/linux/sparc/bits/sigcontext.h (struct sigcontext):
1583         Remove the typedef keyword.
1585 2000-04-18  Jakub Jelinek  <jakub@redhat.com>
1587         * sysdeps/sparc/sparc64/pt-machine.h (MEMORY_BARRIER): Use membar,
1588         not stbar.
1589         (READ_MEMORY_BARRIER): Define.
1590         * spinlock.c (__pthread_spin_unlock): Use READ_MEMORY_BARRIER, not
1591         MEMORY_BARRIER.
1592         * internals.h (READ_MEMORY_BARRIER): Define if not defined in sysdep
1593         headers.
1595 2000-04-17  Ulrich Drepper  <drepper@redhat.com>
1597         * sysdeps/unix/sysv/linux/i386/getcpuclockid.c
1598         (pthread_getcpuclockid): Don't compare thread_id with thread_self,
1599         use thread_handle().
1601 2000-04-16  Ulrich Drepper  <drepper@redhat.com>
1603         * condvar.c (pthread_cond_timedwait_relative): Don't test for owner
1604         if fast mutex is used.  Don't initialize `already_canceled' twice.
1605         Correctly test for return value of timedsuspend.
1607         * pthread.c: Correct long-time braino.  We never set SA_SIGINFO and
1608         therefore don't need the _rt versions of the signal handlers.
1610 2000-04-15  Ulrich Drepper  <drepper@redhat.com>
1612         * pthread.c (pthread_yield): New function.
1613         * sysdeps/pthread/pthread.h (pthread_yield): Add prototype.
1614         * Versions [libpthread] (GLIBC_2.2): Add pthread_yield.
1615         * internals.h: Declare __pthread_yield.
1617         * pthread.c (pthread_initialize): Avoid a bit more code if
1618         realtime signals are known to exist.
1620         * pthread.c: Is __ASSUME_REALTIME_SIGNALS then avoid generating code
1621         to dynamically detect RT signals and avoid generating compatibility
1622         functions with old kernel.
1623         * restart.h (restart) [__ASSUME_REALTIME_SIGNALS]: Use
1624         __pthread_restart_new directly.
1625         (suspend) [__ASSUME_REALTIME_SIGNALS]: Use
1626         __pthread_wait_for_restart_signal directly.
1627         (timedsuspend) [__ASSUME_REALTIME_SIGNALS]: Use
1628         __pthread_timedsuspend_new directly.
1630 2000-04-15  Ulrich Drepper  <drepper@redhat.com>
1632         * condvar.c: Remove all the special code to handle cond_timedwait.
1633         Use timedsuspend instead.
1634         * internals.h: Declare __pthread_timedsuspend_old,
1635         __pthread_timedsuspend_new, and __pthread_timedsuspend.
1636         Remove declaration of __pthread_init_condvar.
1637         * pthread.c: Define __pthread_timedsuspend variable.
1638         (__pthread_timedsuspend_old): New function.  Timed suspension
1639         implementation for old Linux kernels.
1640         (__pthread_timedsuspend_new): New function.  Timed suspension
1641         implementation for new Linux kernels.
1642         * restart.h (timedsuspend): New function.  Call appropriate
1643         suspension function through __pthread_timedsuspend.
1644         * semaphore.c (sem_timedwait): Use timedsuspend, don't duplicate
1645         the code.
1646         Patch by Kaz Kylheku <kaz@ashi.footprints.net>.
1648         * internals.h (WRITE_MEMORY_BARRIER): Define as MEMORY_BARRIER if
1649         undefined.
1650         * spinlock.c: Use WRITE_MEMORY_BARRIER instead of MEMORY_BARRIER
1651         where possible.
1652         * sysdeps/alpha/pt-machine.h: Define WRITE_MEMORY_BARRIER.
1653         * sysdeps/sparc/sparc64/pt-machine.h: Likewise.
1655         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Add _POSIX_SPAWN.
1656         * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: Likewise.
1658 2000-04-14  Andreas Jaeger  <aj@suse.de>
1660         * weaks.c: Fix typo.
1662         * shlib-versions (mips.*-.*-linux.*): Support only GLIBC 2.0 and
1663         2.2 for linuxthreads.
1665 2000-04-13  Ulrich Drepper  <drepper@redhat.com>
1667         * sysdeps/unix/sysv/linux/i386/getcpuclockid.c
1668         (pthread_getcpuclockid): Fix typo.
1670 2000-04-12  Ulrich Drepper  <drepper@redhat.com>
1672         * Makefile (libpthread-routines): Add getcpuclockid.
1673         * Versions [libpthread] (GLIBC_2.2): Add pthread_getcpuclockid.
1674         * sysdeps/pthread/getcpuclockid.c: New file.
1675         * sysdeps/unix/sysv/linux/i386/getcpuclockid.c: New file.
1676         * sysdeps/pthread/pthread.h: Add prototype for pthread_getcpuclockid.
1678         * sysdeps/unix/sysv/linux/bits/posix_opt.h (_POSIX_SPIN_LOCKS):
1679         Defined.
1680         * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: Likewise.
1682         * sysdeps/pthread/pthread.h: Add prototypes for pthread_spin_init,
1683         pthread_spin_destroy, pthread_spin_lock, pthread_spin_trylock,
1684         and pthread_spin_unlock.
1685         * sysdeps/pthread/bits/pthreadtypes.h: Change struct _pthread_fastlock
1686         into pthread_spinlock_t.  Change all uses.
1687         * spinlock.c: Implement pthread_spin_lock.
1688         Rename __pthread_unlock to __pthread_spin_unlock and define weak
1689         alias for real name.
1690         Define pthread_spin_trylock, pthread_spin_init, and
1691         pthread_spin_destroy.
1692         Change all uses of _pthread_fastlock to pthread_spinlock_t.
1693         * spinlock.h: Rename __pthread_unlock to __pthread_spin_unlock.
1694         Change all uses of _pthread_fastlock to pthread_spinlock_t.
1695         * Versions [libpthread] (GLIBC_2.2): Add pthread_spin_init,
1696         pthread_spin_destroy, pthread_spin_lock, pthread_spin_trylock,
1697         and pthread_spin_unlock.
1698         * cancel.c: Use __pthread_spin_unlock instead of __pthread_unlock.
1699         Change all uses of _pthread_fastlock to pthread_spinlock_t.
1700         * condvar.c: Likewise.
1701         * internals.h: Likewise.
1702         * join.c: Likewise.
1703         * manager.c: Likewise.
1704         * mutex.c: Likewise.
1705         * pthread.c: Likewise.
1706         * rwlock.c: Likewise.
1707         * semaphore.c: Likewise.
1708         * signals.c: Likewise.
1710         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Add various new POSIX
1711         macros.
1712         * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: New file.
1714 2000-04-11  Ulrich Drepper  <drepper@redhat.com>
1716         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Add
1717         _POSIX_SHARED_MEMORY_OBJECTS.
1719 2000-04-11  Andreas Jaeger  <aj@suse.de>
1721         * sysdeps/mips/pt-machine.h (MEMORY_BARRIER): Define.
1722         (__compare_and_swap): Mark as modifying memory.
1724 2000-04-11  Geoff Keating  <geoffk@cygnus.com>
1726         * sysdeps/powerpc/pt-machine.h (MEMORY_BARRIER): Don't be
1727         __volatile__.
1728         (__compare_and_swap): Replace other 'sync' with MEMORY_BARRIER.
1729         Don't have the 'asm' __volatile__.
1731 2000-04-11  Ulrich Drepper  <drepper@redhat.com>
1733         * internals.h: Define MEMORY_BARRIER as empty if not defined already.
1734         * spinlock.c (__pthread_lock): Add memory barriers.
1735         (__pthread_unlock): Likewise.
1736         * sysdeps/alpha/pt-machine.h (MEMORY_BARRIER): Define using mb
1737         instruction.
1738         (RELEASE): Not needed anymore.
1739         (__compare_and_swap): Mark asm as modifying memory.
1740         * sysdeps/powerpc/pt-machine.h (sync): Remove.  Replace with definition
1741         of MEMORY_BARRIER.
1742         (__compare_and_swap): Use MEMORY_BARRIER instead of sync.
1743         * sysdeps/sparc/sparc32/pt-machine.h (RELEASE): Not needed anymore.
1744         (MEMORY_BARRIER): Define using stbar.
1745         * sysdeps/sparc/sparc64/pt-machine.h (MEMORY_BARRIER): Define using
1746         stbar.
1747         (__compare_and_swap): Use MEMORY_BARRIER to ensure ordering.
1748         Patch by Xavier Leroy <Xavier.Leroy@inria.fr> based on comments by
1749         Mike Burrows <m3b@pa.dec.com>.
1751 2000-04-09  Ulrich Drepper  <drepper@redhat.com>
1753         * signals.c (sigaction): Fix return value for the case SIG is one
1754         of the signals the implementation uses.
1755         Patch by Xavier.Leroy@inria.fr.
1757 2000-04-01  Andreas Jaeger  <aj@suse.de>
1759         * attr.c: Use shlib-compat macros.
1760         * oldsemaphore.c: Likewise.
1761         * pthread.c: Likewise.
1762         * weaks.c: Likewise.
1764 2000-03-26  Ulrich Drepper  <drepper@redhat.com>
1766         * semaphore.c (sem_timedwait): New function.
1767         Patch by Carl Mailloux <carlm@oricom.ca>.
1768         * semaphore.h: Declare sem_timedwait.
1769         * Versions [libpthread] (GLIBC_2.2): Add sem_timedwait.
1771 2000-03-26  Roland McGrath  <roland@baalperazim.frob.com>
1773         * sysdeps/pthread/Makefile: File removed.
1775 2000-03-23  Ulrich Drepper  <drepper@redhat.com>
1777         * mutex.c (__pthread_reset_pthread_once): Reset once_masterlock.
1778         * internals.h (__pthread_reset_pthread_once): Add prototype.
1779         * ptfork.c (__fork): Call __pthread_reset_pthread_once.
1781         * manager.c (pthread_handle_create): Store ID of new thread before
1782         clone call.
1784 2000-03-21  Ulrich Drepper  <drepper@redhat.com>
1786         * attr.c: Use new macros from shlib-compat.h to define versions.
1787         * oldsemaphore.c: Likewise.
1788         * semaphore.c: Likewise.
1789         * weaks.c: Likewise.
1791         * pthread.c: Update for new SHLIB_COMPAT definition.
1793         * manager.c (__pthread_manager): Unmask debug signal.
1795         * pthread.c (pthread_initialize): Test for address of __dso_handle
1796         being NULL, not value.  Use __on_exit, not on_exit.
1797         Patch by Andreas Jaeger <aj@suse.de>.
1799         * pthread.c: Use new macros from shlib-compat.h to define versions.
1801 2000-03-19  Ulrich Drepper  <drepper@redhat.com>
1803         * pthread.c (pthread_initialize): Instead of on_exit use
1804         __cxa_atexit if __dso_label is available to allow unloading the
1805         libpthread shared library.
1807 2000-03-16  Ulrich Drepper  <drepper@redhat.com>
1809         * condvar.c: Make tests for ownership of mutex less strict.
1811 2000-03-14  Ulrich Drepper  <drepper@redhat.com>
1813         * condvar.c (pthread_cond_wait): Check whether mutex is owned by
1814         current thread and return error if not.
1815         (pthread_cond_timedwait_relative_old): Likewise.
1816         (pthread_cond_timedwait_relative_new): Likewise.
1818         * mutex.c (__pthread_once): Handle cancelled init function correctly.
1819         (pthread_once_cancelhandler): New function.
1820         Patch by Kaz Kylheku <kaz@ashi.footprints.net>.
1822 2000-03-14  Andreas Jaeger  <aj@suse.de>
1824         * pthread.c (pthread_handle_sigcancel_rt): GS has been renamed to
1825         REG_GS.
1826         (pthread_handle_sigrestart_rt): Likewise.
1827         * signals.c (pthread_sighandler_rt): Likewise.
1829 2000-03-02  Andreas Jaeger  <aj@suse.de>
1831         * sysdeps/pthread/bits/libc-lock.h: Fix typo.
1832         Reported by Sean Chen <sean.chen@turbolinux.com>.
1834 2000-02-28  Andreas Jaeger  <aj@suse.de>
1836         * rwlock.c: Fix typo.
1838 2000-02-27  Ulrich Drepper  <drepper@redhat.com>
1840         * rwlock.c: Define __* variants of the functions and make old names
1841         aliases.
1842         * Versions [GLIBC_2.2]: Export the __pthread_rwlock_* functions.
1843         * sysdeps/pthread/bits/libc-lock.h: Define __libc_rwlock_* macros.
1845 2000-02-25  Andreas Jaeger  <aj@suse.de>
1847         * Versions: Export pread, __pread64, pread64, pwrite, __pwrite64,
1848         pwrite64, lseek64, open64, and __open64 with version 2.2.
1850 2000-02-22  Ulrich Drepper  <drepper@redhat.com>
1852         * semaphore.h (SEM_FAILED): Use 0 not NULL.
1854 2000-02-14  Ulrich Drepper  <drepper@redhat.com>
1856         * condvar.c (pthread_cond_timedwait_relative_old): Tight loop with
1857         nanosleep does not work either.  Get absolute time inside the
1858         loop.
1859         (pthread_cond_timedwait_relative_new): Likewise.
1860         Patch by Kaz Kylheku <kaz@ashi.footprints.net>.
1862 2000-02-13  Andreas Jaeger  <aj@suse.de>
1864         * condvar.c (pthread_cond_timedwait_relative_new): Fix last patch.
1865         (pthread_cond_timedwait_relative_old): Likewise.
1867 2000-02-13  Ulrich Drepper  <drepper@redhat.com>
1869         * condvar.c (pthread_cond_timedwait_relative_old): Undo last patch
1870         but keep the code around.  A bug in the kernel prevent us from
1871         using the code.
1872         (pthread_cond_timedwait_relative_new): Likewise.
1873         (PR libc/1597 and libc/1598).
1875 2000-02-01  Kaz Kylheku  <kaz@ashi.footprints.net>
1877         * condvar.c (pthread_cond_timedwait_relative_old): Do tight
1878         loop around nanosleep calls instead of around most of the function
1879         (pthread_cond_timedwait_relative_new): Likewise.
1880         body.  Got rid of backwards goto and one local.
1882 2000-01-31  Ulrich Drepper  <drepper@redhat.com>
1884         * condvar.c (pthread_cond_timedwait_relative_old): Recompute time
1885         before every nanosleep call to account for time spent in the rest
1886         of the function.
1887         (pthread_cond_timedwait_relative_new): Likewise.
1888         Patch by khendricks@ivey.uwo.ca (PR libc/1564).
1890 2000-01-29  Ulrich Drepper  <drepper@redhat.com>
1892         * condvar.c (pthread_cond_timedwait_relative_old): Get remaining time
1893         from nanosleep call so that in case we restart we only wait for the
1894         remaining time.
1895         (pthread_cond_timedwait_relative_new): Likewise.
1896         Patch by khendricks@ivey.uwo.ca (PR libc/1561).
1898 2000-01-18  Ulrich Drepper  <drepper@cygnus.com>
1900         * manager.c (pthread_allocate_stack): Compute guard page address
1901         correctly.  Patch by HJ Lu.
1903         * sysdeps/pthread/pthread.h: Define
1904         PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP.
1906 2000-01-16  Ulrich Drepper  <drepper@cygnus.com>
1908         * rwlock.c (pthread_rwlock_unlock): Correct one more problem with
1909         preference handling.
1910         (pthread_rwlockattr_setkind_np): Allow
1911         PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP.
1912         Patches by Kaz Kylheku <kaz@ashi.footprints.net>.
1914 2000-01-12  Ulrich Drepper  <drepper@cygnus.com>
1916         * internals.h (pthread_readlock_info): New structure.
1917         (_pthread_descr_struct): Add p_readlock_list, p_readlock_free, and
1918         p_untracked_readlock_count.
1919         * pthread.c (__pthread_initial_thread, pthread_manager_thread):
1920         Add initializers for new fields.
1921         * manager.c (pthread_free): Free read/write lock lists.
1922         * queue.h (queue_is_empty): New function.
1923         * rwlock.c: Implement requirements about when readers should get
1924         locks assigned.
1925         * sysdeps/pthread/pthread.h
1926         (PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP): New definition.
1927         * sysdeps/pthread/bits/pthreadtypes.h (struct _pthread_rwlock_t):
1928         Define this name as well.
1929         Patches by Kaz Kylheku <kaz@ashi.footprints.net>.
1931 2000-01-05  Ulrich Drepper  <drepper@cygnus.com>
1933         * pthread.c (__pthread_initial_thread, pthread_manager_thread):
1934         Adjust initializers for struct _pthread_descr_struct change.
1935         * internals.h (struct _pthread_descr_struct): Move new elements to
1936         the end.
1938 2000-01-03  Kaz Kylheku  <kaz@ashi.footprints.net>
1940         Redesigned how cancellation unblocks a thread from internal
1941         cancellation points (sem_wait, pthread_join,
1942         pthread_cond_{wait,timedwait}).
1943         Cancellation won't eat a signal in any of these functions
1944         (*required* by POSIX and Single Unix Spec!).
1945         * condvar.c: Spontaneous wakeup on pthread_cond_timedwait won't eat a
1946         simultaneous condition variable signal (not required by POSIX
1947         or Single Unix Spec, but nice).
1948         * spinlock.c: __pthread_lock queues back any received restarts
1949         that don't belong to it instead of assuming ownership of lock
1950         upon any restart; fastlock can no longer be acquired by two threads
1951         simultaneously.
1952         * restart.h: Restarts queue even on kernels that don't have
1953         queued real time signals (2.0, early 2.1), thanks to atomic counter,
1954         avoiding a rare race condition in pthread_cond_timedwait.
1956 1999-12-31  Andreas Jaeger  <aj@suse.de>
1958         * internals.h: Remove duplicate prototype declarations.
1960         * weaks.c: Remove __THROW from prototypes since the file is not
1961         compiled by a C++ compiler.
1962         * internals.h: Likewise.
1964 1999-12-30  Andreas Jaeger  <aj@suse.de>
1966         * sysdeps/pthread/pthread.h: Move internal functions to...
1967         * sysdeps/pthread/bits/libc-lock.h: ...here.
1969 1999-12-29  Andreas Jaeger  <aj@suse.de>
1971         * sysdeps/pthread/pthread.h: Fix typos, reformat comments.
1973 1999-12-28  Ulrich Drepper  <drepper@cygnus.com>
1975         * sysdeps/alpha/pt-machine.h: Move stack_pointer definition to the
1976         beginning.
1978         * manager.c (__pthread_start): Add one more cast to prevent
1979         warning on 64bit machines.
1981 1999-12-21  Ulrich Drepper  <drepper@cygnus.com>
1983         * manager.c (pthread_handle_create): Set p_pid of new thread
1984         before calling the callback function to report a new thread.
1986 1999-12-20  Andreas Jaeger  <aj@suse.de>
1988         * pthread.c (pthread_initialize): Move getrlimit call after
1989         setting of errno.
1991 1999-12-18  Ulrich Drepper  <drepper@cygnus.com>
1993         * Versions: Export pread, __pread64, pread64, pwrite, __pwrite64,
1994         pwrite64, lseek64, open64, and __open64.
1995         * wrapsyscall.c: Define pread, __pread64, pread64, pwrite, __pwrite64,
1996         pwrite64, lseek64, open64, and __open64.
1998         * manager.c (pthread_allocate_stack): Correct computation of
1999         new_thread_bottom.  Correct handling of stack size and when the
2000         rlimit method to guard for stack growth is used.
2001         * pthread.c (pthread_initialize): Stack limit must be STACK_SIZE
2002         minus one pagesize (not two).
2004 1999-12-03  Andreas Jaeger  <aj@suse.de>
2006         * Versions: Add __res_state with version GLIBC_2.2.
2008         * errno.c (__res_state): New function to return thread specific
2009         resolver state.
2011         * pthread.c (pthread_initialize): Initialize p_resp.
2012         (__pthread_reset_main_thread): Also set p_resp.
2014         * manager.c (pthread_handle_create): Initialize p_resp.
2016         * internals.h: Add thread specific resolver state.
2017         Based on patches by Adam D. Bradley <artdodge@cs.bu.edu>.
2019 1999-12-01  Ulrich Drepper  <drepper@cygnus.com>
2021         * sysdeps/i386/pt-machine.h: Move stack_pointer definition to the
2022         beginning.
2023         * sysdeps/i386/i686/pt-machine.h: Likewise.
2024         Patches by Alan Modra <alan@SPRI.Levels.UniSA.Edu.Au>.
2026 1999-11-23  Ulrich Drepper  <drepper@cygnus.com>
2028         * manager.c (pthread_start_thread_event): Initialize p_pid already
2029         here.
2031 1999-11-22  Ulrich Drepper  <drepper@cygnus.com>
2033         * internals.h: Add prototype for __pthread_manager_event.
2034         * manager.c (__pthread_manager_event): New function.
2035         (pthread_start_thread_event): Correct computation of self.
2036         Use INIT_THREAD_SELF.
2037         * pthread.c (__pthread_manager_thread): Initialize p_lock.
2038         (__pthread_initialize_manager): Respect event flags also for creation
2039         of the manager thread.
2041 1999-11-08  Ulrich Drepper  <drepper@cygnus.com>
2043         * pthread.c (__pthread_initialize_manager): Initialize
2044         __pthread_manager_thread.p_tid.
2046 1999-11-02  Ulrich Drepper  <drepper@cygnus.com>
2048         * internals.h: Declare __pthread_last_event.
2049         * manager.c: Define __pthread_last_event.
2050         (pthread_handle_create): Set __pthread_last_event.
2051         (pthread_exited): Likewise.
2052         * join.c (pthread_exit): Likewise.
2054         * Makefile (libpthread-routines): Add events.
2055         * events.c: New file.
2056         * internals.h: Protect against multiple inclusion.
2057         Include thread_dbP.h header.
2058         (struct _pthread_descr_struct): Add new fields p_report_events and
2059         p_eventbuf.
2060         Declare event reporting functions.
2061         * join.c (pthread_exit): Signal event if this is wanted.
2062         * manager.c (__pthread_threads_events): New variable.
2063         (pthread_handle_create): Take new parameters with event information.
2064         Signal TD_CREATE event if wanted.
2065         (__pthread_manager): Adjust pthread_handle_create call.
2066         (pthread_start_thread_event): New function.  Block until manager is
2067         finished and then call pthread_start_thread.
2068         (pthread_exited): Signal TD_REAP event if wanted.
2070 1999-10-26  Ulrich Drepper  <drepper@cygnus.com>
2072         * restart.h (suspend_with_cancellation): Rewrite as a macro.
2074         * condvar.c (pthread_cond_timedwait_relative): Don't mark as inline.
2076 1999-10-25  Andreas Jaeger  <aj@suse.de>
2078         * internals.h: Remove K&R compatibility.
2079         * no-tsd.c: Likewise.
2080         * semaphore.h: Likewise.
2081         * signals.c: Likewise.
2082         * sysdeps/pthread/bits/libc-tsd.h: Likewise.
2083         * sysdeps/unix/sysv/linux/bits/sigthread.h: Likewise.
2084         * weaks.c: Likewise.
2086 1999-10-21  Xavier Leroy  <Xavier.Leroy@inria.fr>
2088         * pthread.c: For i386, wrap pthread_handle_sigrestart and
2089         pthread_handle_sigcancel with functions that restore %gs from the
2090         signal context.  For each signal handling function, two wrappers
2091         are required, one for a non-RT signal and one for a RT signal.
2092         * signal.c: For i386, add code to restore %gs from the signal
2093         context in pthread_sighandler and pthread_sighandler_rt.
2095 1999-10-17  Ulrich Drepper  <drepper@cygnus.com>
2097         * internals.h (PTHREAD_START_ARGS_INITIALIZER): Add cast.
2099 1999-10-14  Ulrich Drepper  <drepper@cygnus.com>
2101         * pthread.c (__pthread_initial_thread): Pass argument to
2102         PTHREAD_START_ARGS_INITIALIZER.
2103         (__pthread_manager_thread): Likewise.
2105         * internals.h (PTHREAD_START_ARGS_INITIALIZER): Add parameter to
2106         initialize function.
2108         * manager.c (pthread_handle_create): Remove p_startfct initialization.
2110         * internals.h (_pthread_descr_struct): We don't need p_startfct field.
2112 1999-10-12  Ulrich Drepper  <drepper@cygnus.com>
2114         * internals.h: Correct return types for __libc_read and __libc_write.
2116 1999-10-09  Andreas Jaeger  <aj@suse.de>
2118         * internals.h: Add __new_sem_post to get prototype in
2119         manager.c; include semaphore.h for needed types.
2121 1999-10-08  Ulrich Drepper  <drepper@cygnus.com>
2123         * manager.c (__pthread_manager) [REQ_POST]: Use __new_sem_post
2124         directly instead of calling sem_post which should not be necessary
2125         but is faster and might help in some case to work around problems.
2126         Patch by khendricks@ivey.uwo.ca [libc/1382].
2128 1999-10-08  Andreas Schwab  <schwab@suse.de>
2130         * sysdeps/pthread/Subdirs: New file.
2131         * Implies: Removed.
2133 1999-10-07  Ulrich Drepper  <drepper@cygnus.com>
2135         * Implies: New file.
2136         * internals.h (struct _pthread_descr_struct): Add p_startfct.
2137         * manager.c (pthread_handle_create): Initialize p_startfct.
2138         * pthread.c: Define __linuxthread_pthread_sizeof_descr variable.
2140 1999-09-25  Ulrich Drepper  <drepper@cygnus.com>
2142         * manager.c (__linuxthreads_pthread_threads_max): New variable.
2143         * specific.c (__linuxthreads_pthread_keys_max): New variable.
2144         (__linuxthreads_pthread_key_2ndlevel_size): New variable.
2146         * condvar.c (pthread_cond_timedwait_relative): Never return with
2147         EINTR.  Patch by Andreas Schwab.
2149 1999-09-19  Ulrich Drepper  <drepper@cygnus.com>
2151         * signals.c (sigaction): Correct last patch.  Don't select
2152         pthread_sighandler_rt based on the signal number but instead of
2153         the SA_SIGINFO flag.
2155 1999-09-23  Ulrich Drepper  <drepper@cygnus.com>
2157         * specific.c: Move definitions of struct pthread_key_struct and
2158         destr_function to ...
2159         * internals.h: ...here.
2161 1999-09-18  Ulrich Drepper  <drepper@cygnus.com>
2163         * pthread.c (pthread_handle_sigrestart_rt): New function.  Use
2164         this instead of pthread_handle_sigrestart if the signal is an RT
2165         signal.
2167         * signals.c: Handle passing through of sighandler arguments also
2168         for real-time signals.
2170 1999-09-03  Andreas Schwab  <schwab@suse.de>
2172         * ptfork.c (__fork): Renamed from fork and use __libc_fork.  Add
2173         fork as weak alias.
2174         (__vfork): New function, alias vfork.
2175         * Versions: Export __fork, vfork, and __vfork in libpthread.
2177 1999-08-23  Andreas Schwab  <schwab@suse.de>
2179         * signals.c (pthread_sighandler): Add SIGCONTEXT_EXTRA_ARGS to
2180         call to signal handler.
2182 1999-08-20  Ulrich Drepper  <drepper@cygnus.com>
2184         * pthread.c (__pthread_reset_main_thread): Undo last change.
2185         (__pthread_kill_other_threads_np): Reset signal handlers for the
2186         signals we used in the thread implementation here.
2188 1999-08-19  Ulrich Drepper  <drepper@cygnus.com>
2190         * pthread.c (__pthread_reset_main_thread): Reset signal handlers
2191         for the signals we used in the thread implementation [PR libc/1234].
2193         * Versions: Export __pthread_kill_other_threads_np from libpthread
2194         for GLIBC_2.1.2.
2196         * signals.c: Pass sigcontext through wrapper to the user function.
2198 1999-08-01  Ulrich Drepper  <drepper@cygnus.com>
2200         * Versions [ld.so] (GLIBC_2.0): Export __libc_internal_tsd_get and
2201         __libc_internal_tsd_set.
2203 1999-07-29  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2205         * manager.c: Remove inclusion of <linux/tasks.h> since it's not
2206         needed anymore.
2208 1999-07-16  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2210         * internals.h: Align _pthread_descr_struct to 32 bytes.
2211         Reported by Tim Hockin <thockin@cobaltnet.com>, close PR
2212         libc/1206.
2214 1999-07-09  Ulrich Drepper  <drepper@cygnus.com>
2216         * oldsemaphore.c (sem_compare_and_swap): Fix use of compare and
2217         swap function.
2219 1999-07-09  Cristian Gafton  <gafton@redhat.com>
2221         * Makefile (libpthread-routines): Add oldsemaphore routine.
2222         * Versions: Add sem_destroy, sem_getvalue, sem_init, sem_post,
2223         sem_trywait, and sem_wait to GLIBC_2.1.
2224         * oldsemaphore.c: New file.
2225         * semaphore.c: Add default_symbol_versions for the changed functions.
2226         (__new_sem_init): Rename from sem_init.
2227         (__new_sem_post): Rename from sem_post.
2228         (__new_sem_wait): Rename from sem_wait.
2229         (__new_sem_trywait): Rename from sem_trywait.
2230         (__new_sem_getvalue): Rename from sem_getvalue.
2231         (__new_sem_destroy): Rename from sem_destroy.
2233 1999-06-23  Robey Pointer  <robey@netscape.com>
2235         * internals.h: Added p_nextlock entry to separate queueing for a
2236         lock from queueing for a CV (sometimes a thread queues on a lock
2237         to serialize removing itself from a CV queue).
2238         * pthread.c: Added p_nextlock to initializers.
2239         * spinlock.c: Changed to use p_nextlock instead of p_nextwaiting.
2241 1999-07-09  Ulrich Drepper  <drepper@cygnus.com>
2243         * manager.c (pthread_handle_create): Free mmap region after stack
2244         if clone failed.  Patch by Kaz Kylheku <kaz@ashi.FootPrints.net>.
2246 1999-05-23  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2248         * man/pthread_cond_init.man: Correct example.
2249         Reported by Tomas Berndtsson <tomas@nocrew.org>.
2251         * linuxthreads.texi (Condition Variables): Likewise.
2253 1999-05-18  Jakub Jelinek  <jj@ultra.linux.cz>
2255         * sysdeps/sparc/sparc64/pt-machine.h (__compare_and_swap): Use
2256         casx not cas, also successful casx returns the old value in rd
2257         and not the new value.
2259 1999-05-16  Xavier Leroy  <Xavier.Leroy@inria.fr>
2261         * manager.c: If pthread_create() is given a NULL attribute
2262         and the thread manager runs with a realtime policy, set the
2263         scheduling policy of the newly created thread back to SCHED_OTHER.
2264         * manager.c: If the PTHREAD_INHERIT_SCHED attribute is given,
2265         initialize the schedpolicy field of new_thread->p_start_args
2266         to that of the calling thread.
2268 1999-04-29  Ulrich Drepper  <drepper@cygnus.com>
2270         * sysdeps/sparc/sparc64/pt-machine.h (__compare_and_swap): cas
2271         instruction does not allow memory element to use offset.
2273 1999-04-28  Ulrich Drepper  <drepper@cygnus.com>
2275         * manager.c (pthread_allocate_stack): Optimize initialization of new
2276         thread descriptor.
2278         * sysdeps/pthread/bits/libc-lock.h (__libc_lock_define_initialized):
2279         Don't use initializer since it is all zeroes.
2280         (__libc_once_define): Likewise.
2282 1999-04-16  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2284         * sysdeps/arm/Implies: Removed since cmpxchg/no-cmpxchg
2285         doesn't exist anymore.
2286         * sysdeps/i386/Implies: Likewise.
2287         * sysdeps/m68k/Implies: Likewise.
2288         * sysdeps/mips/Implies: Likewise.
2289         * sysdeps/powerpc/Implies: Likewise.
2290         * sysdeps/sparc/sparc32/Implies: Likewise.
2291         * sysdeps/sparc/sparc64/Implies: Likewise.
2293 1999-04-15  Ulrich Drepper  <drepper@cygnus.com>
2295         * sysdeps/alpha/bits/semaphore.h: Removed.
2296         * sysdeps/powerpc/bits/semaphore.h: Removed.
2297         * sysdeps/pthread/cmpxchg/bits/semaphore.h: Removed.
2298         * sysdeps/pthread/no-cmpxchg/bits/semaphore.h: Removed.
2299         * Makefile (headers): Remove bits/semaphore.h.
2301         * semaphore.h: Define _pthread_descr if necessary.
2302         Don't include limits.h.  Define SEM_VALUE_MAX directly.
2303         Define SEM_FAILED.
2304         (sem_t): Protect element names with leading __.
2305         Add declarations for sem_close, sem_open, and sem_unlink.
2306         * semaphore.c: Adjust all functions for new element names.
2307         Define sem_close, sem_open, and sem_unlink.
2308         * Versions (libthread): Add sem_close, sem_open, and sem_unlink for
2309         GLIBC_2.1.1.
2310         * sysdeps/pthread/bits/pthreadtypes.h: Define _pthread_descr only if
2311         necessary.
2313 1999-03-16  H.J. Lu  <hjl@gnu.org>
2315         * specific.c (pthread_key_delete): Check th->p_terminated to see
2316         if the thread is running.
2318         * Versions (__libc_internal_tsd_get, __libc_internal_tsd_set):
2319         Added to GLIBC_2.0 for libc.so.
2321 1999-02-12  H.J. Lu  <hjl@gnu.org>
2323         * Versions (__libc_current_sigrtmin, __libc_current_sigrtmax,
2324         __libc_allocate_rtsig): Added to GLIBC_2.1.
2326         * internals.h (DEFAULT_SIG_RESTART): Removed.
2327         (DEFAULT_SIG_CANCEL): Removed.
2329         * pthread.c (init_rtsigs, __libc_current_sigrtmin,
2330         __libc_current_sigrtmax, __libc_allocate_rtsig): New functions.
2331         (__pthread_sig_restart, __pthread_sig_cancel,
2332         __pthread_sig_debug): Initialized.
2333         (pthread_initialize): Call init_rtsigs () to initialize
2334         real-time signals.
2336 1999-02-03  H.J. Lu  <hjl@gnu.org>
2338         * manager.c (__pthread_manager): Do block __pthread_sig_debug.
2339         Don't restart the thread which sent REQ_DEBUG.
2340         (pthread_start_thread): Check if __pthread_sig_debug > 0
2341         before debugging.
2343         * pthread.c (__pthread_initialize_manager): Suspend ourself
2344         after sending __pthread_sig_debug to gdb instead of
2345         __pthread_sig_cancel.
2347 1999-01-24  H.J. Lu  <hjl@gnu.org>
2349         * manager.c (__pthread_manager): Delete __pthread_sig_debug
2350         from mask if __pthread_sig_debug > 0.
2351         (pthread_handle_create): Increment __pthread_handles_num.
2353         * manager.c (pthread_handle_create): Don't pass CLONE_PTRACE to clone.
2354         * pthread.c (__pthread_initialize_manager): Likewise.
2356         * pthread.c (pthread_initialize): Use __libc_allocate_rtsig (1)
2357         instead of __libc_allocate_rtsig (2).
2358         (__pthread_initialize_manager): Send __pthread_sig_debug to gdb
2359         instead of __pthread_sig_cancel.
2360         (pthread_handle_sigdebug): Fix comments.
2362 1999-01-21  Ulrich Drepper  <drepper@cygnus.com>
2364         * manager.c (pthread_allocate_stack): Set
2365         __pthread_nonstandard_stacks if user-specified stack is used.
2367 1999-01-16  Ulrich Drepper  <drepper@cygnus.com>
2369         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Add _LFS_ASYNCHRONOUS_IO,
2370         _LFS_LARGEFILE, _LFS64_LARGEFILE, and _LFS64_STDIO from Unix98.
2372 1999-01-07  Xavier Leroy  <Xavier.Leroy@inria.fr>
2374         * pthread.c: Use a third signal __pthread_sig_debug distinct
2375         from __pthread_sig_cancel to notify gdb when a thread is
2376         created
2377         * manager.c: Likewise.
2378         * internals.h: Likewise.
2379         * signals.c: The implementation of sigwait(s) assumed that
2380         all signals in s have signal handlers already attached.
2381         This is not required by the standard, so make it work
2382         also if some of the signals have no handlers.
2384 1999-01-05  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2386         * linuxthreads.texi: Remove pointers from first @node.  Move old
2387         @node spec inside comment.
2389 1998-12-31  Ulrich Drepper  <drepper@cygnus.com>
2391         * sysdeps/pthread/bits/stdio-lock.h: Define _IO_lock_lock and
2392         _IO_lock_unlock.
2394 1998-12-29  Ulrich Drepper  <drepper@cygnus.com>
2396         * semaphore.c (sem_trywait): Don't forget to unlock the semaphore
2397         lock.  Patch by Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>.
2399 1998-12-21  Ulrich Drepper  <drepper@cygnus.com>
2401         * manager.c: Threads now send __pthread_sig_cancel on termination.
2402         Change clone call and signal masks.
2403         * thread.c (pthread_handle_sigrestart): Remove special code for
2404         manager.
2405         (pthread_handle_sigcancel): In manager thread call
2406         __pthread_manager_sighandler.
2407         * sysdeps/i386/pt-machine.h (__compare_and_swap): Add memory clobber.
2408         * sysdeps/i386/i686/pt-machine.h: Likewise.
2409         Patches by Xavier Leroy.
2411 1998-12-14  Ulrich Drepper  <drepper@cygnus.com>
2413         * spinlock.c (__pthread_unlock): Don't crash if called for an
2414         untaken mutex.  Reported by Ruslan V. Brushkoff <rus@Snif.Te.Net.UA>.
2416         * Examples/ex6.c: Unbuffer stdout and reduce sleep time to reduce
2417         overall runtime.
2419 1998-12-13  Ulrich Drepper  <drepper@cygnus.com>
2421         * Examples/ex3.c: Wait until all threads are started before
2422         searching for the number to avoid race condition on very fast
2423         systems.
2425 1998-12-08  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2427         * sysdeps/pthread/pthread.h: Remove __pthread_setcanceltype
2428         declaration since it's not needed.
2430         * sysdeps/pthread/pthread.h: Move internal functions to ...
2431         * internals.h: ...here.
2433 1998-12-02  H.J. Lu  <hjl@gnu.org>
2435         * pthread.c (__pthread_sig_restart): Initiliaze to 0 if
2436         SIGRTMIN is defined.
2437         (__pthread_sig_cancel): Likewise.
2439 1998-12-01  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2441         * wrapsyscall.c: Include <sys/mman.h> for msync,
2442         <stdlib.h> for system and <termios.h> for tcdrain prototype.
2443         Correct msync declaration.
2445 1998-11-29  Roland McGrath  <roland@baalperazim.frob.com>
2447         * sysdeps/pthread/bits/libc-tsd.h (__libc_tsd_define, __libc_tsd_get,
2448         __libc_tsd_set): New macros for new interface.
2449         * no-tsd.c: New file, provide uninitialized defns of
2450         __libc_internal_tsd_get and __libc_internal_tsd_set.
2451         * Makefile (routines): Add no-tsd.
2453 1998-10-12  Roland McGrath  <roland@baalperazim.frob.com>
2455         * internals.h: Include <bits/libc-tsd.h>, not <bits/libc-lock.h>.
2456         * sysdeps/pthread/bits/libc-lock.h (__libc_internal_tsd_get,
2457         __libc_internal_tsd_set): Move decls to ...
2458         * sysdeps/pthread/bits/libc-tsd.h: New file for __libc_internal_tsd_*
2459         declarations.
2461         * sysdeps/pthread/bits/libc-lock.h (__libc_internal_tsd_get,
2462         __libc_internal_tsd_set): Make these pointers to functions, not
2463         functions; remove #pragma weak decls for them.
2464         * specific.c (__libc_internal_tsd_get, __libc_internal_tsd_set):
2465         Define static functions and initialized pointers to them.
2467 1998-11-18  Ulrich Drepper  <drepper@cygnus.com>
2469         * Makefile (CFLAGS-mutex.c): Define as -D__NO_WEAK_PTHREAD_ALIASES.
2470         (CFLAGS-specific.c): Likewise.
2471         (CFLAGS-pthread.c): Likewise.
2472         (CFLAGS-ptfork.c): Likewise.
2473         (CFLAGS-cancel.c): Likewise.
2474         * sysdeps/pthread/bits/libc-lock.h: Don't mark __pthread_* functions
2475         as weak references if __NO_WEAK_PTHREAD_ALIASES is defined.
2477         * mutex.c (pthread_mutex_init): Define as strong symbol.
2478         (pthread_mutex_destroy): Likewise.
2479         (pthread_mutex_trylock): Likewise.
2480         (pthread_mutex_lock): Likewise.
2481         (pthread_mutex_unlock): Likewise.
2482         (pthread_mutexattr_init): Likewise.
2483         (pthread_mutexattr_destroy): Likewise.
2484         (pthread_once): Likewise.
2485         * ptfork.c (pthread_atfork): Likewise.
2486         * specific.c (pthread_key_create): Likewise.
2487         (pthread_setspecific): Likewise.
2488         (pthread_getspecific): Likewise.
2490 1998-11-15  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2492         * linuxthreads.texi: Fix punctuation after xref.
2494 1998-11-10  H.J. Lu  <hjl@gnu.org>
2496         * sysdeps/unix/sysv/linux/bits/local_lim.h: Undefine NR_OPEN
2497         if it is defined in <linux/limits.h>.
2499 1998-10-29 14:28  Ulrich Drepper  <drepper@cygnus.com>
2501         * spinlock.h (__pthread_trylock): Define inline.
2502         (__pthread_lock): Add extra parameter to declaration.  Declare
2503         using internal_function.
2504         (__pthread_unlock): Declare using internal_function.
2505         * spinlock.c (__pthread_lock): Add new parameter.  Use it instead
2506         of local variable self.  Avoid recomputing self.  Define using
2507         internal_function.
2508         (__pthread_trylock): Remove.
2509         (__pthread_unlock): Define using internal_function.
2510         * cancel.c: Adjust for __pthread_lock interface change.  Use already
2511         computed self value is possible.
2512         * condvar.c: Likewise.
2513         * join.c: Likewise.
2514         * manager.c: Likewise.
2515         * mutex.c: Likewise.
2516         * pthread.c: Likewise.
2517         * rwlock.c: Likewise.
2518         * semaphore.c: Likewise.
2519         * signals.c: Likewise.
2521 1998-10-27 13:46  Ulrich Drepper  <drepper@cygnus.com>
2523         * sysdeps/pthread/pthread.h (struct _pthread_cleanup_buffer): Prepend
2524         __ to field names of the struct.
2525         * sysdeps/pthread/bits/pthreadtypes.h (struct _pthread_fastlock):
2526         Likewise.
2527         (pthread_attr_t): Likewise.
2528         (pthread_cond_t): Likewise.
2529         (pthread_condattr_t): Likewise.
2530         (pthread_mutex_t): Likewise.
2531         (pthread_mutexattr_t): Likewise.
2532         (pthread_rwlock_t): Likewise.
2533         (pthread_rwlockattr_t): Likewise.
2534         * attr.c: Adjust for pthread.h and pthreadtypes.h change.
2535         * cancel.c: Likewise.
2536         * condvar.c: Likewise.
2537         * manager.c: Likewise.
2538         * mutex.c: Likewise.
2539         * pthread.c: Likewise.
2540         * ptlongjmp.c: Likewise.
2541         * rwlock.c: Likewise.
2542         * spinlock.c: Likewise.
2544 1998-10-09  Ulrich Drepper  <drepper@cygnus.com>
2546         * sysdeps/i386/pt-machine.h (get_eflags, set_eflags): Mark these
2547         also with PT_EI.
2549         * sysdeps/i386/i686/pt-machine.h: Remove unused inline
2550         definitions.
2552         * Makefile (libpthread-routines): Add pt-machine.
2553         * pt-machine.c: New file.
2554         * sysdeps/alpha/pt-machine.h: Define PT_EI as extern inline is not
2555         yet defined.  Use PT_EI in extern inline definitions.
2556         * sysdeps/arm/pt-machine.h: Likewise.
2557         * sysdeps/i386/pt-machine.h: Likewise.
2558         * sysdeps/i386/i686/pt-machine.h: Likewise.
2559         * sysdeps/m68k/pt-machine.h: Likewise.
2560         * sysdeps/mips/pt-machine.h: Likewise.
2561         * sysdeps/powerpc/pt-machine.h: Likewise.
2562         * sysdeps/sparc/sparc32/pt-machine.h: Likewise.
2563         * sysdeps/sparc/sparc64/pt-machine.h: Likewise.
2565 1998-10-02  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2567         * semaphore.h: Include <sys/types.h> so that _pthread_descr
2568         is declared.
2570 1998-09-15  David S. Miller  <davem@pierdol.cobaltmicro.com>
2572         * sysdeps/sparc/sparc32/pt-machine.h (INIT_THREAD_SELF): Add nr
2573         argument.
2574         * sysdeps/sparc/sparc64/pt-machine.h (INIT_THREAD_SELF): Likewise.
2576 1998-09-12 14:24 -0400  Zack Weinberg  <zack@rabi.phys.columbia.edu>
2578         * sysdeps/unix/sysv/linux/bits/sigthread.h: Add multiple inclusion
2579         guard.
2581 1998-09-02 11:08  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2583         * signals.c (sigaction): Check that sig is less than NSIG to avoid
2584         array index overflow.
2586 1998-09-06 10:56  Ulrich Drepper  <drepper@cygnus.com>
2588         * sysdeps/pthread/semaphore.h: New file.
2590 1998-09-06 09:08  Ulrich Drepper  <drepper@cygnus.com>
2592         * sysdeps/pthread/bits/libc-lock.h (enum __libc_tsd_key_t): Add
2593         _LIBC_TSD_KEY_DL_ERROR.
2595 1998-08-31  Ulrich Drepper  <drepper@cygnus.com>
2597         * sysdeps/i386/i686/pt-machine.h (testandset): Add memory clobber.
2598         * sysdeps/i386/pt-machine.h: Likewise.
2599         Suggested by Roland McGrath.
2601 1998-08-28 13:58  Ulrich Drepper  <drepper@cygnus.com>
2603         * internals.h: Also define THREAD_GETMEM_NC and THREAD_SETMEM_NC to
2604         access thread data with non-constant offsets.
2605         * specific.c: Use THREAD_GETMEM_NC and THREAD_SETMEM_NC where
2606         necessary.
2608         * sysdeps/i386/useldt.h: Fix typo.  Add THREAD_GETMEM_NC and
2609         THREAD_SETMEM_NC definitions.
2611         * sysdeps/sparc/sparc32/pt-machine.h: Define THREAD_GETMEM_NC and
2612         THREAD_SETMEM_NC.
2613         * sysdeps/sparc/sparc64/pt-machine.h: Likewise.
2615 1998-08-26 15:46  Ulrich Drepper  <drepper@cygnus.com>
2617         * internals.h: Define THREAD_GETMEM and THREAD_SETMEM to default if
2618         not already defined.
2619         (struct _pthread_descr_struct): Add p_self and p_nr field.
2620         * manager.c (__pthread_handles): Define second element to point
2621         to manager thread.
2622         (__pthread_handles_num): Initialize to 2.
2623         (__pthread_manager): Use INIT_THREAD_SELF with two arguments.
2624         (pthread_start_thread): Likewise.
2625         (pthread_handle_create): Start search for free slot at entry 2.
2626         Initialize new fields p_self and p_nr.
2627         Call __clone with CLONE_PTRACE if available.
2628         (pthread_free): Call FREE_THREAD_SELF if available.
2629         * pthread.c (__pthread_initial_thread): Initialize new fields.
2630         (__pthread_manager_thread): Likewise.
2631         (__pthread_initialize_manager): Call __clone with CLONE_PTRACE.
2633         * cancel.c: Use THREAD_GETMEM and THREAD_SETMEM to access the
2634         elements of the thread descriptor.
2635         * condvar.c: Likewise.
2636         * errno.c: Likewise.
2637         * join.c: Likewise.
2638         * manager.c: Likewise.
2639         * pthread.c: Likewise.
2640         * ptlongjmp.c: Likewise.
2641         * semaphore.c: Likewise.
2642         * signals.c: Likewise.
2643         * specific.c: Likewise.
2644         * spinlock.c: Likewise.
2646         * sysdeps/alpha/pt-machine.h (INIT_THREAD_SELF): Add extra parameter.
2648         * sysdeps/i386/useldt.h: New file.
2649         * sysdeps/i386/i686/pt-machine.h: Show how to use this file.
2651         * sysdeps/sparc/sparc32/pt-machine.h: Define THREAD_GETMEM and
2652         THREAD_SETMEM using __thread_self.
2653         * sysdeps/sparc/sparc64/pt-machine.h: Likewise.
2655 1998-08-24  Geoff Keating  <geoffk@ozemail.com.au>
2657         * spinlock.c (__pthread_lock): Reset p_nextwaiting to NULL if it
2658         turned out that we didn't need to queue after all.
2660 1998-08-22  Geoff Keating  <geoffk@ozemail.com.au>
2662         * sysdeps/powerpc/pt-machine.h: Remove testandset, it's not used
2663         and wastes space; correct types.
2665 1998-08-08 11:18  H.J. Lu  <hjl@gnu.org>
2667         * signals.c (sigaction): Handle NULL argument.
2669 1998-08-04  Ulrich Drepper  <drepper@cygnus.com>
2671         * sysdeps/unix/sysv/linux/bits/sigthread.h: Use __sigset_t instead
2672         of sigset_t.
2674 1998-08-02  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2676         * Makefile (linuxthreads-version): Extract correct number from
2677         Banner.
2679 1998-07-29  Xavier Leroy  <Xavier.Leroy@inria.fr>
2681         * Banner: Bump version number to 0.8
2682         * FAQ.html: Many updates, in particular w.r.t. debugging.
2683         * manager.c: Support for non-default stacksize for
2684         LinuxThreads-allocated stacks;
2685         don't use guard pages for stacks with default size, rely on
2686         rlimit(RLIMIT_STACK) instead (it's cheaper).
2687         * attr.c: Likewise.
2688         * cancel.c: Use __pthread_sig_cancel and __pthread_sig_restart
2689         everywhere instead of PTHREAD_SIG_CANCEL and PTHREAD_SIG_RESTART.
2690         * condvar.c: Likewise.
2691         * internals.h: Likewise.
2692         * restart.h: Likewise.
2693         * signals.c: Likewise.
2694         * pthread.c: Likewise; set rlimit(RLIMIT_STACK) as we need it.
2696 1998-07-23  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2698         * weaks.c: Define pthread_mutexattr_[sg]ettype instead of
2699         __pthread_mutexattr_[sg]ettype.  Add more weak aliases.
2700         * Versions: Put __pthread_mutexattr_settype under version
2701         GLIBC_2.0.  Don't export __pthread_mutexattr_setkind_np and
2702         __pthread_mutexattr_gettype.
2704 1998-07-23  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2706         * sysdeps/pthread/bits/libc-lock.h: Make
2707         __pthread_mutexattr_settype weak.  Don't make
2708         __pthread_mutexattr_setkind_np weak.
2710 1998-07-16 10:52  Ulrich Drepper  <drepper@cygnus.com>
2712         * manager.c (pthread_handle_create): Check whether sched_setscheduler
2713         call can succeed here.
2715         * mutex.c: Define __pthread_mutexattr_settype and make
2716         __pthread_mutexattr_setkind_np an alias.
2717         Likewise for __pthread_mutexattr_gettype.
2719 1998-07-15 11:00 -0400  Zack Weinberg  <zack@rabi.phys.columbia.edu>
2721         * attr.c (pthread_attr_setschedpolicy): Don't check whether caller
2722         is root.
2724 1998-07-14 19:38  Ulrich Drepper  <drepper@cygnus.com>
2726         * sysdeps/pthread/bits/libc-lock.h: Define __libc_cleanup_end.
2728 1998-07-11  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2730         * Examples/ex6.c: Include <unistd.h> for usleep.
2732 1998-06-13 11:04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2734         * Examples/ex4.c (main): Use exit, not pthread_exit.
2736 1998-07-09 13:39  Ulrich Drepper  <drepper@cygnus.com>
2738         * Versions: Add __pthread_mutexattr_gettype and
2739         __pthread_mutexattr_settype.
2740         * lockfile.c: Use __pthread_mutexattr_settype instead of
2741         __pthread_mutexattr_setkind_np.
2742         * mutex.c: Define __pthread_mutexattr_gettype and
2743         __pthread_mutexattr_settype.
2744         * weak.c: Likewise.
2745         * sysdeps/pthread/pthread.h: Declare __pthread_mutexattr_gettype and
2746         __pthread_mutexattr_settype.
2747         * sysdeps/pthread/bits/libc-lock.h (__libc_lock_init_recursive):
2748         Use __pthread_mutexattr_settype.
2750 1998-07-08 22:26  Ulrich Drepper  <drepper@cygnus.com>
2752         * Versions: Add pthread_mutexattr_gettype, pthread_mutexattr_settype.
2753         * mutex.c: Define weak alias pthread_mutexattr_gettype and
2754         pthread_mutexattr_settype.
2755         * sysdeps/pthread/pthread.h: Declare these functions.
2756         Move pthread_sigmask and pthread_kill declaration in separate header.
2757         * sysdeps/unix/sysv/linux/bits/sigthread.h: New file.
2759 1998-07-07 15:20  Ulrich Drepper  <drepper@cygnus.com>
2761         * Makefile: Add rules to compile and run tests.
2762         * Examples/ex1.c: Little changes to fix warnings.
2763         * Examples/ex2.c: Likewise.
2764         * Examples/ex3.c: Likewise.
2765         * Examples/ex4.c: Likewise.
2766         * Examples/ex5.c: Likewise.
2767         * Examples/ex6.c: New file.
2769 1998-07-05 11:54  Ulrich Drepper  <drepper@cygnus.com>
2771         * Versions: Add pthread_attr_init to GLIBC_2.1 version in libc.
2773 1998-07-01  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2775         * attr.c: Include <string.h>.
2777 1998-06-30 11:47  Ulrich Drepper  <drepper@cygnus.com>
2779         * attr.c: Include errno.h.  Use memcpy to copy sched_param.
2780         * internals.h: Include limits.h.
2781         * manager.c: Use memcpy to copy sched_param.
2782         * ptfork.c: Include errno.h.
2783         * pthread.c: Likewise.
2784         * semaphore.c: Likewise.
2785         * specific.c: Likewise.
2786         * spinlock.h: Likewise.
2787         * sysdeps/pthread/pthread.h: Include only allowed headers.  Move
2788         type definition to ...
2789         * sysdeps/pthread/bits/pthreadtypes.h: ...here.  New file.
2791 1998-06-29 12:34  Ulrich Drepper  <drepper@cygnus.com>
2793         * sysdeps/pthread/pthread.h: Use __PMT not __P for function pointers.
2795         * sysdeps/pthread/pthread.h: Define various PTHREAD_* symbols also
2796         as macros as demanded in POSIX.1, Annex C.
2798 1998-06-29 12:29  Ulrich Drepper  <drepper@cygnus.com>
2800         * internals.h (struct pthread_request): For free use pthread_t
2801         instead of pthread_descr.
2802         * join.c (pthread_join): Pass thread_id, not th to manager.
2803         (pthread_detach): Likewise.
2804         * manager.c (__pthread_manager): Except thread ID in FREE_REQ case.
2805         (pthread_exited): Remove detached queue code.
2806         (pthread_handle_free): Expect thread ID parameter and use it to
2807         validate the thread decsriptor.  Don't use detached queue.
2808         Patches by Xavier Leroy.
2810 1998-06-27  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2812         * libpthread.map: Export accept, longjmp, sigaction, siglongjmp,
2813         _IO_flockfile, _IO_ftrylockfile, _IO_funlockfile,
2814         __pthread_atfork, __pthread_key_create, __pthread_once.
2815         * internals.h: Doc fix.
2816         * pthread.c (__pthread_initialize): Define again.
2818 1998-06-26  Ulrich Drepper  <drepper@cygnus.com>
2820         * manager.c (pthread_exited): If thread is not detached put it on
2821         special list.
2822         (pthread_handle_free): If thread is not on list with living threads
2823         search on list with detached threads.
2825         * sysdeps/pthread/pthread.h (PTHREAD_RWLOCK_INITIALIZER): Correct
2826         for new definition of pthread_rwlock_t.
2828         * spinlock.c: Correct test whether to compile
2829         __pthread_compare_and_swap or not.
2831 1998-06-25 19:27  Ulrich Drepper  <drepper@cygnus.com>
2833         * attr.c: Finish user stack support.  Change locking code to be safe
2834         in situations with different priorities.
2835         * cancel.c: Likewise.
2836         * condvar.c: Likewise.
2837         * internals.h: Likewise.
2838         * join.c: Likewise.
2839         * manager.c: Likewise.
2840         * mutex.c: Likewise.
2841         * pthread.c: Likewise.
2842         * ptlongjmp.c: Likewise.
2843         * queue.h: Likewise.
2844         * rwlock.c: Likewise.
2845         * semaphore.c: Likewise.
2846         * semaphore.h: Likewise.
2847         * signals.c: Likewise.
2848         * spinlock.c: Likewise.
2849         * spinlock.h: Likewise.
2850         * sysdeps/pthread/pthread.h: Likewise.
2851         Patches by Xavier Leroy.
2853         * sysdeps/i386/i686/pt-machine.h: New file.
2855 1998-06-25  Ulrich Drepper  <drepper@cygnus.com>
2857         * sysdeps/pthread/pthread.h: Make [sg]et_stacksize and
2858         [sg]et_stackaddr prototypes always available.
2860         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Define
2861         _POSIX_THREAD_ATTR_STACKSIZE and _POSIX_THREAD_ATTR_STACKADDR.
2863 1998-06-24  Ulrich Drepper  <drepper@cygnus.com>
2865         * manager.c (pthread_free): Undo patch from 980430.
2866         Reported by David Wragg <dpw@doc.ic.ac.uk>.
2868 1998-06-09 15:07  Ulrich Drepper  <drepper@cygnus.com>
2870         * manager.c: Define __pthread_manager_adjust_prio and use it to
2871         increase priority when needed.
2872         * internals.h: Add prototype for __pthread_manager_adjust_prio.
2873         * mutex.c: Optimize mutexes to wake up only one thread.
2874         * pthread.c: Move PID of manager for global variable in structure
2875         element.
2876         Patches by Xavier Leroy.
2878 1998-06-07 13:47  Ulrich Drepper  <drepper@cygnus.com>
2880         * sysdeps/pthread/bits/libc-lock.h: Optimize cleanup handlers a bit.
2882 1998-06-03  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2884         * attr.c: Correct typo.
2886 1998-05-01  Ulrich Drepper  <drepper@cygnus.com>
2888         * manager.c (pthread_free): Unmap guard before the stack.
2889         Patch by Matthias Urlichs.
2891 1998-04-30  Ulrich Drepper  <drepper@cygnus.com>
2893         * manager.c (pthread_free): Detect already free child.
2894         Patch by Xavier Leroy, reported by Matthias Urlichs.
2896 1998-04-23  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2898         * Makefile (linuxthreads-version): Renamed back from
2899         libpthread-version.
2901 1998-04-21  Ulrich Drepper  <drepper@cygnus.com>
2903         * ptlongjmp.c: Add prototypes for __libc_siglongjmp and
2904         __libc_longjmp.
2906 1998-04-20 14:55  Ulrich Drepper  <drepper@cygnus.com>
2908         * Makefile (libpthread-routines): Add ptlongjmp and spinlock.
2909         * internals.h: Add definitions for new spinlock implementation.
2910         * ptlongjmp.c: New file.
2911         * spinlock.c: New file.
2912         * spinlock.h (acquire): Don't reschedule using __sched_yield, use
2913         new function __pthread_acquire to prevent deadlocks with thread
2914         with different priorities.
2915         Patches by Xavier Leroy <Xavier.Leroy@inria.fr>.
2917 1998-03-16  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2919         * manager.c (__pthread_manager): Reduce first argument to select
2920         to include just the needed file descriptor.
2922 1998-03-17 00:06  Ulrich Drepper  <drepper@cygnus.com>
2924         * manager.c: Fix last patch which caused core dumps.
2926         * pthread.c: Correctly handle missing SIGRTMIN.
2928 1998-03-15  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2930         * libpthread.map: Add __libc_internal_tsd_get and
2931         __libc_internal_tsd_set.  Add missing cancelable functions. Export
2932         libc internal versions of the cancelable functions.
2934 1998-03-13 16:51  Ulrich Drepper  <drepper@cygnus.com>
2936         * weaks.c: Define pthread_attr_init as GLIBC_2.0 and GLIBC_2.1.
2938 1998-03-13 00:46  Ulrich Drepper  <drepper@cygnus.com>
2940         * attr.c: Implement pthread_attr_[gs]etguardsize,
2941         pthread_attr_[gs]setstackaddr, pthread_attr_[gs]etstacksize.
2942         Change pthread_attr_init to have two interfaces.
2943         * internals.h (struct _pthread_descr_struct): Add new fields for
2944         above functions.
2945         * libpthread.map: Add names in GLIBC_2.1 section.
2946         * manager.c (pthread_handle_create): Implement guardsize and
2947         user stack.
2948         (pthread_free): Likewise.
2949         * pthread.c (pthread_create): Add new interface for changed
2950         pthread_attr_t.
2951         * sysdeps/pthread/pthread.h: Add prototypes for new functions.
2952         * sysdeps/unix/sysv/linux/bits/local_lim.h: Add definition of
2953         PTHREAD_STACK_MIN.
2955 1998-03-11 00:42  Wolfram Gloger  <wmglo@dent.med.uni-muenchen.de>
2957         * manager.c: Enable resetting of the thread scheduling policy
2958         to SCHED_OTHER when the parent thread has a different one.
2960 1998-02-01 13:51  Ulrich Drepper  <drepper@cygnus.com>
2962         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Define
2963         _POSIX_ASYNCHRONOUS_IO.
2965         * sysdeps/pthread/pthread.h: Define bits for Unix98 variants of
2966         mutexes.
2967         * mutex.c: Implement new mutex types.
2969         * internals.h: Include <signal.h>.
2971         * libpthread.map: Add __erno_location and __h_errno_location.
2973         * errno.c: Return pointer to variable actually in use.  This might
2974         not be the one in the thread structure.
2975         * internals.h (struct _pthread_descr_struct): Add new fields p_errnop
2976         and p_h_errnop.
2977         * manager.c (__pthread_manager): Set p_errnop and p_h_errnop member
2978         of manager thread structure.
2979         (pthread_handle_create): Set p_errnop and p_h_errnop members for new
2980         thread.
2981         * pthread.c: Adapt initializer for thread structures.
2982         (__pthread_initial_thread): Set p_errnop and p_h_errnop member.
2983         (__pthread_reset_main_thread): Reset p_errnop and p_h_errnop of
2984         current thread to global variables.
2986 1998-01-31 17:27  Ulrich Drepper  <drepper@cygnus.com>
2988         * rwlock.c: New file.
2989         * Makefile (libpthread-routines): Add rwlock.
2990         * sysdeps/pthread/pthread.h: Define data structures and declare
2991         functions.
2992         * libpthread.map: Add new functions.
2994 1997-12-18 13:50  Philip Blundell  <pb@nexus.co.uk>
2996         * sysdeps/arm/pt-machine.h: New file; add ARM support.
2997         * sysdeps/arm/Implies: likewise.
2998         * README: Document it.
3000 1997-12-13  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3002         * signals.c: Remove unneeded initializer for sigwaited, saving a
3003         warning.
3005 1997-04-11 01:18  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3007         * semaphore.c (sem_init): Set sem_spinlock only if available.
3009 1997-12-04 01:48  Ulrich Drepper  <drepper@cygnus.com>
3011         * mutex.c: Implement PTHREAD_MUTEX_CHECKERROR.
3012         * sysdeps/pthread/pthread.h: Define PTHREAD_MUTEX_CHECKERROR.
3014         * Makefile: Update from LinuxThreads 0.7.
3015         * internals.h. Likewise.
3016         * manager.c: Likewise.
3017         * mutex.c: Likewise.
3018         * pthread.c: Likewise.
3019         * signals.c: Likewise.
3020         * specific.c: Likewise.
3021         * Examples/ex3.c: Likewise.
3023 1997-11-20 18:13  Ulrich Drepper  <drepper@cygnus.com>
3025         * pthread.c (__pthread_reset_main_thread): Close pipe only if still
3026         open.
3028 1997-10-29 05:38  Ulrich Drepper  <drepper@cygnus.com>
3030         * wrapsyscall.c: Add socket functions which are also cancelation
3031         points.
3033 1997-10-19 21:40  Wolfram Gloger  <wg@wolfram.dent.med.uni-muenchen.de>
3035         * specific.c (__libc_internal_tsd_set, __libc_internal_tsd_get):
3036         New functions for fast thread specific data within libc.
3038         * internals.h: Add new array p_libc_specific to struct
3039         _pthread_descr_struct.
3041         * sysdeps/pthread/bits/libc-lock.h: Declare new functions.
3043 1997-10-13 05:39  Ulrich Drepper  <drepper@cygnus.com>
3045         * semaphore.h: Add __BEGIN_DECLS/__END_DECLS.
3046         Reported by Ralf Corsepius <corsepiu@faw.uni-ulm.de>.
3048 1997-08-29 03:05  Ulrich Drepper  <drepper@cygnus.com>
3050         * internals.h (struct _pthread_descr_struct): Add definitions for
3051         two-level specific key handling.
3052         * manager.c (pthread_handle_create): Initialize specific memory array.
3053         * specific.c: Implement two-level key handling.
3054         * weaks.c: Don't provide dummy key handling.
3055         * sysdeps/pthread/bits/libc-lock.h: Typedef __libc_lock_t (no #define).
3056         Add definition of __libc_key_t.
3057         * sysdeps/unix/sysv/linux/bits/local_lim.h: Define PTHREAD_KEYS_MAX
3058         as 1024.
3059         Add definition of _POSIX_THREAD_DESTRUCTOR_ITERATIONS and
3060         PTHREAD_DESTRUCTOR_ITERATIONS.
3062         * manager.c (pthread_handle_create): Compare mmap result with
3063         MAP_FAILED.
3065         * ptfork.c: Rename to __pthread_atfork and make old name a weak alias.
3066         * sysdeps/pthread/bits/pthread.h: Add prototype for __pthread_atfork.
3068 1997-08-22 19:04  Richard Henderson  <rth@cygnus.com>
3070         sysdeps/sparc -> sysdeps/sparc/sparc32
3071         sysdeps/sparc64 -> sysdeps/sparc/sparc64
3073         * internals.h: Change definition of THREAD_SELF to be an expression,
3074         not a statement that did a return.
3075         * sysdeps/alpha/pt-machine.h (THREAD_SELF): Update accordingly.
3076         * sysdeps/sparc/sparc32/pt-machine.h (THREAD_SELF, INIT_THREAD_SELF):
3077         Follow Solaris and use a "system reserved" register (%g6) to hold
3078         the thread descriptor.
3079         * sysdeps/sparc/sparc64/pt-machine.h: Likewise.
3081 1997-08-03 00:09  Ulrich Drepper  <drepper@cygnus.com>
3083         * mutex.c: Correct pthread_once.  Patch by Xavier Leroy.
3084         * sysdeps/pthread/pthread.h: Add prototype for __pthread_once.
3085         * sysdeps/pthread/bits/pthread.h: Add macros for __libc_once.
3087         * semaphore.c: Include spinlock.h only when needed.
3089         * specific.c (__pthread_setsepcific, __pthread_getspecific): Reject
3090         keys for entries not in use.
3092         * weaks.c: Implement key handling functions for real.
3094 1997-06-29  01:04  Richard Henderson  <richard@gnu.ai.mit.edu>
3096         Initial sparc64-linux support:
3097         * sysdeps/sparc64/Implies: New file.
3098         * sysdeps/sparc64/pt-machine.h: Likewise.
3100 1997-06-29 00:48  Ulrich Drepper  <drepper@cygnus.com>
3102         * semaphore.c: Include spinlock.h at correct place.
3103         Patch by HJ Lu.
3105 1997-06-13 10:06  Richard Henderson  <rth@tamu.edu>
3107         The Great Bit File Move:
3108         * sysdeps/alpha/semaphorebits.h: -> .../bits/semaphore.h.
3109         * sysdeps/powerpc/semaphorebits.h: Likewise.
3110         * sysdeps/pthread/cmpxchg/semaphorebits.h: Likewise.
3111         * sysdeps/pthread/no-cmpxchg/semaphorebits.h: Likewise.
3112         * sysdeps/pthread/libc-lock.h: -> bits/
3113         * sysdeps/pthread/stdio-lock.h: Likewise.
3114         * sysdeps/unix/sysv/linux/local_lim.h: Likewise.
3115         * sysdeps/unix/sysv/linux/posix_opt.h: Likewise.
3116         * semaphore.h: Likewise.
3117         * sysdeps/pthread/pthread.h: Likewise.
3119         * lockfile.c: <foo.h> -> <bits/foo.h>.
3120         * semaphore.h: Likewise.
3122         * Makefile: (headers): foo.h -> bits/foo.h.
3123         * sysdeps/pthread/Makefile: Likewise.
3125 1997-04-11 01:18  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3127         * semaphore.c (sem_init): Set sem_spinlock only if available.
3129         * sysdeps/m68k/pt-machine.h (testandset, __compare_and_swap): Fix
3130         asm constraints.
3132 1997-04-09 03:00  Ulrich Drepper  <drepper@cygnus.com>
3134         Update from LinuxThreads 0.6.
3136         * attr.c (pthread_attr_getdetachstate): Use __sched_get_priority_max
3137         and __sched_get_priority_min instead of names without `__'.
3139         * manager.c: Rewrite large parts to implement opaque pthread_t.
3141         * cancel.c: Adapt for opaque pthread_t type.
3142         * condvar.c: Likewise.
3143         * errno.c: Likewise.
3144         * join.c: Likewise.
3145         * mutex.c: Likewise.
3146         * pthread.c: Likewise.
3147         * signals.c: Likewise.
3148         * specific.c: Likewise.
3149         * restart.h: Likewise.
3150         * queue.h: Likewise.
3151         * Examples/ex3.c: Likewise.
3152         * Examples/ex4.c: Likewise.
3153         * sysdeps/pthread/pthread.h: Likewise.
3155         * pthread.c: Accumulate time for all threads in thread manager.
3157         * semaphore.c: Implement fallback implementation for architectures
3158         sometimes missing compare-exchange operations.
3160         * cancel.c (pthread_cancel): Validate handle argument.
3161         * join.c (pthread_join): Likewise.
3162         (pthread_detach): Likewise.
3163         * signals.c (pthread_kill): Likewise.
3165         * spinlock.h (acquire): Use __sched_yield not sched_yield.
3167         * queue.h (enqueue): Enqueue thread according to priority.
3169         * internals.c (struct pthread_start_args): New struct for passing
3170         args to cloning function.
3171         (struct _pthread): Rename to _pthread_descr_struct and adapt for
3172         opaque pthread_t.
3174         * Examples/Makefile (clean): Pass -f option to rm.
3176         * sysdeps/i386/pt-machine.h: Add check for compare-exchange instruction
3177         and define TEST_FOR_COMPARE_AND_SWAP.
3178         * sysdeps/i386/i486/pt-machine.h: Removed.
3180         * sysdeps/unix/sysv/linux/local_lim.h (PTHREAD_THREADS_MAX): Increase
3181         to 1024.
3183 1997-04-04 16:38  Ulrich Drepper  <drepper@cygnus.com>
3185         * restart.h (suspend): Clear p_signal before suspending.
3186         (suspend_with_cancellation): Likewise.
3187         Patch by Xavier Leroy <Xavier.Leroy@inria.fr>.
3189         * weaks.c: Make __pthread_key_create return 1.
3190         * sysdeps/pthread/libc-lock.h: Define __libc_key_create,
3191         __libc_getspecific, __libc_setspecific, and __libc_key_t.
3192         * sysdeps/pthread/stdio-lock.h: Don't care for implementation not
3193         using libio.
3195 1997-03-19 15:13  Miguel de Icaza  <miguel@nuclecu.unam.mx>
3197         * sysdeps/sparc/pt-machine (RELEASE): Fix.
3199 1997-03-01 07:55  Geoff Keating  <geoffk@ozemail.com.au>
3201         * sysdeps/powerpc/Implies: Added.
3202         * sysdeps/powerpc/pt-machine.h: Added.
3203         * sysdeps/powerpc/semaphorebits.h: Added.
3205 1997-01-22 01:22  Ulrich Drepper  <drepper@cygnus.com>
3207         * pthread.c (__pthread_initial_thread): Correct
3208         initializer.
3209         (__pthread_manager_thread): Likewise.
3210         Reported by Andreas Jaeger.
3212 1997-01-18 22:15  Richard Henderson  <rth@tamu.edu>
3214         Since sigset_t no longer fits in a register, we can't pass in the
3215         thread's initial mask so easily.  Take this opportunity to simplify
3216         the clone implementation by only accepting a single void* argument.
3218         * manager.c (__pthread_manager): Put thread vitals in the thread
3219         struct instead of as arguments through clone.
3220         (pthread_start_thread): Look for them there.
3221         * internals.h (struct _pthread): Add p_initial_fn,
3222         p_initial_fn_arg, p_initial_mask.  Fix __pthread_manager proto.
3223         * pthread.c (pthread_initialize_manager): Revise clone invocation.