* sysdeps/generic/pt-raise.c: Moved to ...
[platform/upstream/glibc.git] / nptl / ChangeLog
1 2006-02-26  Roland McGrath  <roland@redhat.com>
2
3         * sysdeps/generic/pt-raise.c: Moved to ...
4         * pt-raise.c: ... here.
5         * sysdeps/generic/lowlevellock.h: Moved to ...
6         * lowlevellock.h: ... here.
7
8 2006-02-23  Roland McGrath  <roland@redhat.com>
9
10         * descr.h (struct pthread): Add final member `end_padding'.
11         (PTHREAD_STRUCT_END_PADDING): Use it.
12
13 2006-02-20  Roland McGrath  <roland@redhat.com>
14
15         * sysdeps/mips: Directory removed, saved in ports repository.
16         * sysdeps/unix/sysv/linux/mips: Likewise.
17
18 2006-02-18  Ulrich Drepper  <drepper@redhat.com>
19
20         * tst-robust1.c: Add second mutex to check that the mutex list is
21         handled correctly.
22
23 2006-02-17  Jakub Jelinek  <jakub@redhat.com>
24
25         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h (lll_robust_mutex_dead,
26         lll_robust_mutex_trylock, lll_robust_mutex_lock,
27         lll_robust_mutex_cond_lock, lll_robust_mutex_timedlock,
28         lll_robust_mutex_unlock): New macros.
29         (__lll_robust_lock_wait, __lll_robust_timedlock_wait): New prototypes.
30         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
31         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
32         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: Likewise.
33         * sysdeps/unix/sysv/linux/lowlevelrobustlock.c: New file.
34
35 2006-02-17  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
36
37         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Add lll_robust_mutex_*
38         definitions.
39         * sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S: New file.
40
41 2006-02-17  Ulrich Drepper  <drepper@redhat.com>
42
43         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h
44         (lll_robust_mutex_unlock): Avoid unnecessary wakeups.
45         * sysdeps/unix/sysv/linux/i386/lowlevellock.h
46         (lll_robust_mutex_unlock): Likewise.
47
48 2006-02-13  Jakub Jelinek  <jakub@redhat.com>
49
50         * descr.h [!__PTHREAD_MUTEX_HAVE_PREV] (DEQUEUE_MUTEX):
51         Set robust_list.__next rather than robust_list.
52         * sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h
53         (__pthread_list_t): New typedef.
54         (pthread_mutex_t): Replace __next and __prev fields with __list.
55         * sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h
56         (__pthread_list_t): New typedef.
57         (pthread_mutex_t): Replace __next and __prev fields with __list.
58         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
59         (__pthread_list_t, __pthread_slist_t): New typedefs.
60         (pthread_mutex_t): Replace __next and __prev fields with __list.
61         * sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
62         (__pthread_list_t, __pthread_slist_t): New typedefs.
63         (pthread_mutex_t): Replace __next and __prev fields with __list.
64         * sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h
65         (__pthread_list_t, __pthread_slist_t): New typedefs.
66         (pthread_mutex_t): Replace __next and __prev fields with __list.
67         * sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h
68         (__pthread_slist_t): New typedef.
69         (pthread_mutex_t): Replace __next field with __list.
70
71 2006-02-15  Ulrich Drepper  <drepper@redhat.com>
72
73         * pthreadP.h: Define PTHREAD_MUTEX_INCONSISTENT instead of
74         PTHREAD_MUTEX_OWNERDEAD.
75         (PTHREAD_MUTEX_ROBUST_PRIVATE_NP): Define as 16, not 256.
76         Define FUTEX_WAITERS, FUTEX_OWNER_DIED, FUTEX_TID_MASK.
77         * Makefile (libpthread-routines): Add lowlevelrobustlock.
78         * pthread_create.c (start_thread): Very much simplify robust_list loop.
79         * pthread_mutex_consistent.c: Inconsistent mutex have __owner now set
80         to PTHREAD_MUTEX_INCONSISTENT.
81         * pthread_mutex_destroy.c: Allow destroying of inconsistent mutexes.
82         * pthread_mutex_lock.c: Reimplement robust mutex handling.
83         * pthread_mutex_trylock.c: Likewise.
84         * pthread_mutex_timedlock.c: Likewise.
85         * pthread_mutex_unlock.c: Likewise.
86         * sysdeps/unix/sysv/linux/pthread_mutex_cond_lock.c: Likewise.
87         * sysdeps/unix/sysv/linux/Makefile (gen-as-const-headers): Add
88         lowlevelrobustlock.sym.
89         * sysdeps/unix/sysv/linux/lowlevelrobustlock.sym: New file.
90         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Add lll_robust_mutex_*
91         definitions.
92         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
93         * sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S: New file.
94         * sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S: New file.
95         * sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S: New file.
96         * sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S: New file.
97
98 2006-02-12  Ulrich Drepper  <drepper@redhat.com>
99
100         * allocatestack.c (allocate_stack): Initialize robust_list.
101         * init.c (__pthread_initialize_minimal_internal): Likewise.
102         * descr.h (struct xid_command): Pretty printing.
103         (struct pthread): Use __pthread_list_t or __pthread_slist_t for
104         robust_list.  Adjust macros.
105         * pthread_create.c (start_thread): Adjust robust_list handling.
106         * phtread_mutex_unlock.c: Don't allow unlocking from any thread
107         but the owner for all robust mutex types.
108         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h: Define
109         __pthread_list_t and __pthread_slist_t.  Use them in pthread_mutex_t.
110         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: Likewise.
111         * sysdeps/pthread/pthread.h: Adjust mutex initializers.
112
113         * sysdeps/unix/sysv/linux/i386/not-cancel.h: Define openat_not_cancel,
114         openat_not_cancel_3, openat64_not_cancel, and openat64_not_cancel_3.
115
116 2006-02-08  Jakub Jelinek  <jakub@redhat.com>
117
118         * sysdeps/unix/sysv/linux/i386/lowlevellock.h (lll_futex_wait,
119         lll_futex_timedwait, lll_wait_tid): Add "memory" clobber.
120
121 2006-01-20  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
122
123         * sysdeps/unix/sysv/linux/sh/lowlevellock.h (lll_futex_wait):
124         Return status.
125         (lll_futex_timed_wait): Define.
126
127 2006-01-19  Ulrich Drepper  <drepper@redhat.com>
128
129         * tst-cancel4.c: Test ppoll.
130
131 2006-01-18  Andreas Jaeger  <aj@suse.de>
132
133         [BZ #2167]
134         * sysdeps/unix/sysv/linux/mips/bits/pthreadtypes.h
135         (pthread_mutex_t): Follow changes for other archs.  Based on patch
136         by Jim Gifford <patches@jg555.com>.
137
138 2006-01-13  Richard Henderson  <rth@redhat.com>
139
140         * sysdeps/alpha/tls.h (tcbhead_t): Rename member to __private.
141
142 2006-01-10  Roland McGrath  <roland@redhat.com>
143
144         * sysdeps/alpha/jmpbuf-unwind.h: File moved to main source tree.
145         * sysdeps/i386/jmpbuf-unwind.h: Likewise.
146         * sysdeps/mips/jmpbuf-unwind.h: Likewise.
147         * sysdeps/powerpc/jmpbuf-unwind.h: Likewise.
148         * sysdeps/s390/jmpbuf-unwind.h: Likewise.
149         * sysdeps/sh/jmpbuf-unwind.h: Likewise.
150         * sysdeps/sparc/sparc32/jmpbuf-unwind.h: Likewise.
151         * sysdeps/sparc/sparc64/jmpbuf-unwind.h: Likewise.
152         * sysdeps/x86_64/jmpbuf-unwind.h: Likewise.
153         * sysdeps/unix/sysv/linux/ia64/jmpbuf-unwind.h: Likewise.
154
155 2006-01-09  Roland McGrath  <roland@redhat.com>
156
157         * tst-initializers1-c89.c: New file.
158         * tst-initializers1-c99.c: New file.
159         * tst-initializers1-gnu89.c: New file.
160         * tst-initializers1-gnu99.c: New file.
161         * Makefile (tests): Add them.
162         (CFLAGS-tst-initializers1-c89.c): New variable.
163         (CFLAGS-tst-initializers1-c99.c): New variable.
164         (CFLAGS-tst-initializers1-gnu89.c): New variable.
165         (CFLAGS-tst-initializers1-gnu99.c): New variable.
166
167         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h (pthread_mutex_t):
168         Use __extension__ on anonymous union definition.
169         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: Likewise.
170         * sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h: Likewise.
171         * sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Likewise.
172         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Likewise.
173         * sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h: Likewise.
174
175 2006-01-08  Jakub Jelinek  <jakub@redhat.com>
176
177         * sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h (pthread_mutex_t):
178         Don't give the union a name because it changes the mangled name.
179         Instead name the struct for __data.
180         * sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h (pthread_mutex_t):
181         Likewise.
182         * sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h (pthread_mutex_t):
183         Likewise.
184
185 2006-01-09  Jakub Jelinek  <jakub@redhat.com>
186
187         * sysdeps/sparc/sparc64/jmpbuf-unwind.h (_JMPBUF_UNWINDS_ADJ): Add
188         stack bias to mc_ftp field.
189
190 2006-01-07  Ulrich Drepper  <drepper@redhat.com>
191
192         * sysdeps/pthread/aio_misc.h (AIO_MISC_WAIT): Work around gcc
193         being too clever and reloading the futex value where it shouldn't.
194
195 2006-01-06  Ulrich Drepper  <drepper@redhat.com>
196
197         * descr.h [!__PTHREAD_MUTEX_HAVE_PREV] (DEQUEUE_MUTEX): Use
198         correct type.
199
200 2006-01-06  Jakub Jelinek  <jakub@redhat.com>
201
202         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h (PSEUDO):
203         Add cfi directives.
204
205 2006-01-06  Ulrich Drepper  <drepper@redhat.com>
206
207         * sysdeps/ia64/tls.h (tcbhead_t): Rename private member to __private.
208         * sysdeps/ia64/tcb-offsets.sym: Adjust for private->__private
209         rename in tcbhead_t.
210
211         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h (pthread_mutex_t):
212         Don't give the union a name because it changes the mangled name.
213         Instead name the struct for __data.
214         * sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h: Likewise.
215         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Likewise.
216         * sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Likewise.
217         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: Likewise.
218         * pthread_create.c (start_thread): Adjust robust mutex free loop.
219         * descr.h (ENQUEUE_MUTEX, DEQUEUE_MUTEX): Adjust.
220
221 2006-01-05  Ulrich Drepper  <drepper@redhat.com>
222
223         * sysdeps/unix/sysv/linux/i386/lowlevellock.h (lll_futex_wait):
224         Return status.
225         (lll_futex_timed_wait): Define.
226         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
227         * sysdeps/pthread/aio_misc.h: New file.
228
229 2006-01-03  Joseph S. Myers  <joseph@codesourcery.com>
230
231         * Makefile ($(objpfx)$(multidir)): Use mkdir -p.
232
233 2006-01-03  Steven Munroe  <sjmunroe@us.ibm.com>
234
235         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h
236         (PSEUDO): Remove redundant cfi_startproc and cfi_endproc directives.
237         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: Likewise.
238
239 2006-01-04  Ulrich Drepper  <drepper@redhat.com>
240
241         * tst-cancel24.cc: Use C headers instead of C++ headers.
242
243 2006-01-03  Jakub Jelinek  <jakub@redhat.com>
244
245         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Remove #error for
246         sparc-linux configured glibc.
247         (lll_futex_wake_unlock): Define to 1 for sparc-linux configured glibc.
248         (__lll_mutex_trylock, __lll_mutex_cond_trylock, __lll_mutex_lock,
249         __lll_mutex_cond_lock, __lll_mutex_timedlock): Use
250         atomic_compare_and_exchange_val_24_acq instead of
251         atomic_compare_and_exchange_val_acq.
252         (lll_mutex_unlock, lll_mutex_unlock_force): Use atomic_exchange_24_rel
253         instead of atomic_exchange_rel.
254         * sysdeps/unix/sysv/linux/sparc/sparc32/lowlevellock.c: New file.
255         * sysdeps/unix/sysv/linux/sparc/sparc32/pthread_barrier_init.c: New
256         file.
257         * sysdeps/unix/sysv/linux/sparc/sparc32/pthread_barrier_wait.c: New
258         file.
259         * sysdeps/unix/sysv/linux/sparc/sparc32/sem_init.c: New file.
260         * sysdeps/unix/sysv/linux/sparc/sparc32/sem_post.c: New file.
261         * sysdeps/unix/sysv/linux/sparc/sparc32/sem_timedwait.c: New file.
262         * sysdeps/unix/sysv/linux/sparc/sparc32/sem_trywait.c: New file.
263         * sysdeps/unix/sysv/linux/sparc/sparc32/sem_wait.c: New file.
264         * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/pthread_barrier_init.c:
265         New file.
266         * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/pthread_barrier_wait.c:
267         New file.
268         * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_init.c: New file.
269         * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_post.c: New file.
270         * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_timedwait.c: New
271         file.
272         * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_trywait.c: New
273         file.
274         * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_wait.c: New file.
275
276 2006-01-03  Ulrich Drepper  <drepper@redhat.com>
277
278         * sysdeps/pthread/pthread.h [__WORDSIZE==64]: Don't use cast in
279         mutex initializers.
280
281 2006-01-02  Jakub Jelinek  <jakub@redhat.com>
282
283         * sysdeps/sparc/tls.h (tcbhead_t): Add pointer_guard field.
284         (THREAD_GET_POINTER_GUARD, THREAD_SET_POINTER_GUARD,
285         THREAD_COPY_POINTER_GUARD): Define.
286         * sysdeps/sparc/tcb-offsets.sym (POINTER_GUARD): Define.
287         * sysdeps/sparc/sparc64/jmpbuf-unwind.h: Revert 2005-12-27 changes.
288
289 2006-01-01  Ulrich Drepper  <drepper@redhat.com>
290
291         * version.c: Update copyright year.
292
293 2005-12-29  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
294
295         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Remove explicit
296         .eh_frame section, use cfi_* directives.
297         * sysdeps/unix/sysv/linux/sh/lowlevellock.S: Add cfi instrumentation.
298
299 2005-12-30  Ulrich Drepper  <drepper@redhat.com>
300
301         * sysdeps/unix/sysv/linux/ia64/jmpbuf-unwind.h: Undo last change for
302         now.
303
304 2005-12-29  Ulrich Drepper  <drepper@redhat.com>
305
306         * sysdeps/pthread/sigaction.c: Removed.
307         * sigaction.c: New file.
308         * sysdeps/unix/sysv/linux/Makefile: Define CFLAGS-sigaction.c.
309
310 2005-12-28  Ulrich Drepper  <drepper@redhat.com>
311
312         * Makefile (tests): Add tst-signal7.
313         * tst-signal7.c: New file.
314
315 2005-12-27  Roland McGrath  <roland@redhat.com>
316
317         * sysdeps/x86_64/jmpbuf-unwind.h (_jmpbuf_sp): New inline function.
318         (_JMPBUF_UNWINDS_ADJ): Use it, to PTR_DEMANGLE before comparison.
319         * sysdeps/alpha/jmpbuf-unwind.h: Likewise.
320         * sysdeps/i386/jmpbuf-unwind.h: Likewise.
321         * sysdeps/mips/jmpbuf-unwind.h: Likewise.
322         * sysdeps/powerpc/jmpbuf-unwind.h: Likewise.
323         * sysdeps/s390/jmpbuf-unwind.h: Likewise.
324         * sysdeps/sh/jmpbuf-unwind.h: Likewise.
325         * sysdeps/sparc/sparc32/jmpbuf-unwind.h: Likewise.
326         * sysdeps/sparc/sparc64/jmpbuf-unwind.h: Likewise.
327         * sysdeps/unix/sysv/linux/ia64/jmpbuf-unwind.h: Likewise.
328
329 2005-12-27  Jakub Jelinek  <jakub@redhat.com>
330
331         * sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h: Add __next
332         and __prev field to pthread_mutex_t.
333         * sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h: Likewise.
334         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Likewise.
335         * sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Likewise.
336         * sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h: Likewise.
337         * sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h: Add __next field
338         to pthread_mutex_t.
339
340 2005-12-26  Ulrich Drepper  <drepper@redhat.com>
341
342         * pthreadP.h: Define PTHREAD_MUTEX_ROBUST_PRIVATE_NP,
343         PTHREAD_MUTEX_ROBUST_PRIVATE_RECURSIVE_NP,
344         PTHREAD_MUTEX_ROBUST_PRIVATE_ERRORCHECK_NP,
345         PTHREAD_MUTEX_ROBUST_PRIVATE_ADAPTIVE_NP,
346         PTHREAD_MUTEXATTR_FLAG_ROBUST, PTHREAD_MUTEXATTR_FLAG_PSHARED,
347         and PTHREAD_MUTEXATTR_FLAG_BITS.
348         * descr.h (struct pthread): Add robust_list field and define
349         ENQUEUE_MUTEX and DEQUEUE_MUTEX macros.
350         * pthread_mutexattr_getrobust.c: New file.
351         * pthread_mutexattr_setrobust.c: New file.
352         * pthread_mutex_consistent.c: New file.
353         * sysdeps/pthread/pthread.h: Declare pthread_mutexattr_getrobust,
354         pthread_mutexattr_setrobust, and pthread_mutex_consistent.
355         Define PTHREAD_MUTEX_STALLED_NP and PTHREAD_MUTEX_ROBUST_NP.
356         Adjust pthread_mutex_t initializers.
357         * nptl/sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h: Add __next
358         field to pthread_mutex_t.
359         * nptl/sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: Add __next
360         and __prev field to pthread_mutex_t.
361         * Versions [GLIBC_2.4]: Export pthread_mutexattr_getrobust_np,
362         pthread_mutexattr_setrobust_np, and pthread_mutex_consistent_np.
363         * pthread_mutexattr_getpshared.c: Use PTHREAD_MUTEXATTR_FLAG_PSHARED
364         and PTHREAD_MUTEXATTR_FLAG_BITS macros instead of magic numbers.
365         * pthread_mutexattr_gettype.c: Likewise.
366         * pthread_mutexattr_setpshared.c: Likewise.
367         * pthread_mutexattr_settype.c: Likewise.
368         * pthread_mutex_init.c: Reject robust+pshared attribute for now.
369         Initialize mutex kind according to robust flag.
370         * pthread_mutex_lock.c: Implement local robust mutex.
371         * pthread_mutex_timedlock.c: Likewise.
372         * pthread_mutex_trylock.c: Likewise.
373         * pthread_mutex_unlock.c: Likewise.
374         * pthread_create.c (start_thread): Mark robust mutexes which remained
375         locked as dead.
376         * tst-robust1.c: New file.
377         * tst-robust2.c: New file.
378         * tst-robust3.c: New file.
379         * tst-robust4.c: New file.
380         * tst-robust5.c: New file.
381         * tst-robust6.c: New file.
382         * tst-robust7.c: New file.
383         * Makefile (libpthread-routines): Add pthread_mutexattr_getrobust,
384         pthread_mutexattr_setrobust, and pthread_mutex_consistent.
385         (tests): Add tst-robust1, tst-robust2, tst-robust3, tst-robust4,
386         tst-robust5, tst-robust6, and tst-robust7.
387
388         * tst-typesizes.c: New file.
389         * Makefile (tests): Add tst-typesizes.
390
391         * tst-once3.c: More debug output.
392
393 2005-12-24  Ulrich Drepper  <drepper@redhat.com>
394
395         * pthread_mutex_trylock.c (__pthread_mutex_trylock): Add break
396         missing after last change.
397
398         * version.c: Update copyright year.
399
400 2005-12-23  Ulrich Drepper  <drepper@redhat.com>
401
402         * pthread_mutex_destroy.c: Set mutex type to an invalid value.
403         * pthread_mutex_lock.c: Return EINVAL for invalid mutex type.
404         * pthread_mutex_trylock.c: Likewise.
405         * pthread_mutex_timedlock.c: Likewise.
406         * pthread_mutex_unlock.c: Likewise.
407
408 2005-12-22  Roland McGrath  <roland@redhat.com>
409
410         * sysdeps/pthread/sigaction.c: Use "" instead of <> to include self,
411         so that #include_next's search location is not reset to the -I..
412         directory where <nptl/...> can be found.
413
414 2005-12-22  Ulrich Drepper  <drepper@redhat.com>
415
416         [BZ #1913]
417         * sysdeps/unix/sysv/linux/i386/i486/sem_wait.S (__new_sem_wait):
418         Fix unwind info.  Remove useless branch prediction prefix.
419         * tst-cancel24.cc: New file.
420         * Makefile: Add rules to build and run tst-cancel24.
421
422 2005-12-21  Roland McGrath  <roland@redhat.com>
423
424         * libc-cancellation.c: Use <> rather than "" #includes.
425         * pt-cleanup.c: Likewise.
426         * pthread_create.c: Likewise.
427         * pthread_join.c: Likewise.
428         * pthread_timedjoin.c: Likewise.
429         * pthread_tryjoin.c: Likewise.
430         * sysdeps/unix/sysv/linux/libc_pthread_init.c: Likewise.
431         * sysdeps/unix/sysv/linux/register-atfork.c: Likewise.
432         * sysdeps/unix/sysv/linux/unregister-atfork.c: Likewise.
433         * unwind.c: Likewise.
434
435 2005-12-19  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
436
437         * sysdeps/sh/tcb-offsets.sym: Add POINTER_GUARD.
438         * sysdeps/sh/tls.h (tcbhead_t): Remove private and add pointer_guard.
439         (THREAD_GET_POINTER_GUARD, THREAD_SET_POINTER_GUARD,
440         THREAD_COPY_POINTER_GUARD): Define.
441
442 2005-12-19  Jakub Jelinek  <jakub@redhat.com>
443
444         * sysdeps/ia64/tls.h (TLS_PRE_TCB_SIZE): Make room for 2 uintptr_t's
445         rather than one.
446         (THREAD_GET_POINTER_GUARD, THREAD_SET_POINTER_GUARD,
447         THREAD_COPY_POINTER_GUARD): Define.
448         * sysdeps/powerpc/tcb-offsets.sym (POINTER_GUARD): Add.
449         * sysdeps/powerpc/tls.h (tcbhead_t): Add pointer_guard field.
450         (THREAD_GET_POINTER_GUARD, THREAD_SET_POINTER_GUARD,
451         THREAD_COPY_POINTER_GUARD): Define.
452         * sysdeps/s390/tcb-offsets.sym (STACK_GUARD): Add.
453         * sysdeps/s390/tls.h (THREAD_GET_POINTER_GUARD,
454         THREAD_SET_POINTER_GUARD, THREAD_COPY_POINTER_GUARD): Define.
455         * sysdeps/unix/sysv/linux/ia64/__ia64_longjmp.S (__ia64_longjmp):
456         Use PTR_DEMANGLE for B0 if defined.
457
458 2005-12-17  Ulrich Drepper  <drepper@redhat.com>
459
460         * pthread_create.c (__pthread_create_2_1): Use
461         THREAD_COPY_POINTER_GUARD if available.
462         * sysdeps/i386/tcb-offsets.sym: Add POINTER_GUARD.
463         * sysdeps/x86_64/tcb-offsets.sym: Likewise.
464         * sysdeps/i386/tls.h (tcbhead_t): Add pointer_guard.
465         Define THREAD_SET_POINTER_GUARD and THREAD_COPY_POINTER_GUARD.
466         * sysdeps/x86_64/tls.h: Likewise.
467
468 2005-12-15  Roland McGrath  <roland@redhat.com>
469
470         * sysdeps/unix/sysv/linux/mq_notify.c: Don't use sysdeps/generic.
471
472 2005-12-13  Ulrich Drepper  <drepper@redhat.com>
473
474         * sysdeps/pthread/sigfillset.c: Adjust for files moved out of
475         sysdeps/generic.
476         * errno-loc.c: New file.
477
478 2005-12-12  Roland McGrath  <roland@redhat.com>
479
480         * init.c (__pthread_initialize_minimal_internal): Do __static_tls_size
481         adjustments before choosing stack size.  Update minimum stack size
482         calculation to match allocate_stack change.
483
484 2005-12-12  Ulrich Drepper  <drepper@redhat.com>
485
486         * allocatestack.c (allocate_stack): Don't demand that there is an
487         additional full page available on the stack beside guard, TLS, the
488         minimum stack.
489
490 2005-11-24  Ulrich Drepper  <drepper@redhat.com>
491
492         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h
493         (__cleanup_fct_attribute): Use __regparm__ not regparm.
494
495         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: When
496         compiling 32-bit code we must define __cleanup_fct_attribute.
497
498 005-11-24  Jakub Jelinek  <jakub@redhat.com>
499
500         [BZ #1920]
501         * sysdeps/pthread/pthread.h (__pthread_unwind_next): Use
502         __attribute__ instead of __attribute.
503         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h
504         (__cleanup_fct_attribute): Likewise.
505
506 2005-11-17  Jakub Jelinek  <jakub@redhat.com>
507
508         * sysdeps/pthread/unwind-forcedunwind.c (pthread_cancel_init): Put
509         a write barrier before writing libgcc_s_getcfa.
510
511 2005-11-06  Ulrich Drepper  <drepper@redhat.com>
512
513         * sysdeps/unix/sysv/linux/configure: Removed.
514
515 2005-11-05  Ulrich Drepper  <drepper@redhat.com>
516
517         * sysdeps/unix/sysv/linux/ia64/pt-initfini.c: Remove trace of
518         optional init_array/fini_array support.
519
520 2005-10-24  Roland McGrath  <roland@redhat.com>
521
522         * sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: Remove unnecessary
523         versioned_symbol use.
524
525 2005-10-16  Roland McGrath  <roland@redhat.com>
526
527         * init.c (__pthread_initialize_minimal_internal): Even when using a
528         compile-time default stack size, apply the minimum that allocate_stack
529         will require, and round up to page size.
530
531 2005-10-10  Daniel Jacobowitz  <dan@codesourcery.com>
532
533         * Makefile ($(test-modules)): Remove static pattern rule.
534
535 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
536             Ulrich Drepper  <drepper@redhat.com>
537
538         * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Fix stack
539         alignment in callback function.
540         * Makefile: Add rules to build and run tst-align3.
541         * tst-align3.c: New file.
542
543 2005-10-03  Jakub Jelinek  <jakub@redhat.com>
544
545         * allocatestack.c (setxid_signal_thread): Add
546         INTERNAL_SYSCALL_DECL (err).
547
548 2005-10-02  Jakub Jelinek  <jakub@redhat.com>
549
550         * allocatestack.c (setxid_signal_thread): Need to use
551         atomic_compare_and_exchange_bool_acq.
552
553 2005-10-01  Ulrich Drepper  <drepper@redhat.com>
554             Jakub Jelinek  <jakub@redhat.com>
555
556         * descr.h: Define SETXID_BIT and SETXID_BITMASK.  Adjust
557         CANCEL_RESTMASK.
558         (struct pthread): Move specific_used field to avoid padding.
559         Add setxid_futex field.
560         * init.c (sighandler_setxid): Reset setxid flag and release the
561         setxid futex.
562         * allocatestack.c (setxid_signal_thread): New function.  Broken
563         out of the bodies of the two loops in __nptl_setxid.  For undetached
564         threads check whether they are exiting and if yes, don't send a signal.
565         (__nptl_setxid): Simplify loops by using setxid_signal_thread.
566         * pthread_create.c (start_thread): For undetached threads, check
567         whether setxid bit is set.  If yes, wait until signal has been
568         processed.
569
570         * allocatestack.c (STACK_VARIABLES): Initialize them.
571         * pthread_create.c (__pthread_create_2_1): Initialize pd.
572
573 2004-09-02  Jakub Jelinek  <jakub@redhat.com>
574
575         * pthread_cond_destroy.c (__pthread_cond_destroy): If there are
576         waiters, awake all waiters on the associated mutex.
577
578 2005-09-22  Roland McGrath  <roland@redhat.com>
579
580         * perf.c [__x86_64__] (HP_TIMING_NOW): New macro (copied from
581         ../sysdeps/x86_64/hp-timing.h).
582
583 2005-08-29  Jakub Jelinek  <jakub@redhat.com>
584
585         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h (FUTEX_WAKE_OP,
586         FUTEX_OP_CLEAR_WAKE_IF_GT_ONE): Define.
587         (lll_futex_wake_unlock): Define.
588         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h (FUTEX_WAKE_OP,
589         FUTEX_OP_CLEAR_WAKE_IF_GT_ONE): Define.
590         (lll_futex_wake_unlock): Define.
591         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h (FUTEX_WAKE_OP,
592         FUTEX_OP_CLEAR_WAKE_IF_GT_ONE): Define.
593         (lll_futex_wake_unlock): Define.
594         * sysdeps/unix/sysv/linux/s390/lowlevellock.h (FUTEX_WAKE_OP,
595         FUTEX_OP_CLEAR_WAKE_IF_GT_ONE): Define.
596         (lll_futex_wake_unlock): Define.
597         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h (FUTEX_WAKE_OP,
598         FUTEX_OP_CLEAR_WAKE_IF_GT_ONE): Define.
599         (lll_futex_wake_unlock): Define.
600         * sysdeps/pthread/pthread_cond_signal.c (__pthread_cond_signal): Use
601         lll_futex_wake_unlock.
602         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S
603         (FUTEX_WAKE_OP, FUTEX_OP_CLEAR_WAKE_IF_GT_ONE): Define.
604         (__pthread_cond_signal): Use FUTEX_WAKE_OP.
605         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S
606         (FUTEX_WAKE_OP, FUTEX_OP_CLEAR_WAKE_IF_GT_ONE): Define.
607         (__pthread_cond_signal): Use FUTEX_WAKE_OP.
608
609 2005-09-05  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
610
611         * sysdeps/unix/sysv/linux/sh/lowlevellock.S (__lll_mutex_lock_wait):
612         Fix typo in register name.
613
614 2005-08-23  Ulrich Drepper  <drepper@redhat.com>
615
616         * sysdeps/unix/sysv/linux/timer_routines.c (timer_helper_thread):
617         Use __sigfillset.  Document that sigfillset does the right thing wrt
618         to SIGSETXID.
619
620 2005-07-11  Jakub Jelinek  <jakub@redhat.com>
621
622         [BZ #1102]
623         * sysdeps/pthread/pthread.h (PTHREAD_MUTEX_INITIALIZER,
624         PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP,
625         PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP,
626         PTHREAD_MUTEX_ADAPTIVE_NP, PTHREAD_RWLOCK_INITIALIZER,
627         PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP,
628         PTHREAD_COND_INITIALIZER): Supply zeros for all fields
629         in the structure.
630         * Makefile (tests): Add tst-initializers1.
631         (CFLAGS-tst-initializers1.c): Set.
632         * tst-initializers1.c: New test.
633
634 2005-07-11  Jakub Jelinek  <jakub@redhat.com>
635
636         * sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h (pthread_rwlock_t):
637         Make sure __flags are located at offset 48 from the start of the
638         structure.
639
640 2005-07-02  Roland McGrath  <roland@redhat.com>
641
642         * Makeconfig: Comment fix.
643
644 2005-07-05  Jakub Jelinek  <jakub@redhat.com>
645
646         * descr.h (PTHREAD_STRUCT_END_PADDING): Define.
647         * sysdeps/ia64/tls.h (TLS_PRE_TCB_SIZE): If PTHREAD_STRUCT_END_PADDING
648         is smaller than 8 bytes, increase TLS_PRE_TCB_SIZE by 16 bytes.
649         (THREAD_SYSINFO, THREAD_SELF, DB_THREAD_SELF): Don't assume
650         TLS_PRE_TCB_SIZE is sizeof (struct pthread).
651         (THREAD_SET_STACK_GUARD, THREAD_COPY_STACK_GUARD): Define.
652         * sysdeps/ia64/tcb-offsets.sym (PID, TID, MULTIPLE_THREADS_OFFSET):
653         Use TLS_PRE_TCB_SIZE instead of sizeof (struct pthread).
654         * sysdeps/unix/sysv/linux/ia64/createthread.c (TLS_VALUE): Don't
655         assume TLS_PRE_TCB_SIZE is sizeof (struct pthread).
656
657 2005-06-25  Jakub Jelinek  <jakub@redhat.com>
658
659         * sysdeps/i386/tls.h (tcbhead_t): Add stack_guard field.
660         (THREAD_SET_STACK_GUARD, THREAD_COPY_STACK_GUARD): Define.
661         * sysdeps/x86_64/tls.h (tcbhead_t): Add sysinfo and stack_guard
662         fields.
663         (THREAD_SET_STACK_GUARD, THREAD_COPY_STACK_GUARD): Define.
664         * sysdeps/s390/tls.h (tcbhead_t): Add stack_guard
665         field.  Put in sysinfo field unconditionally.
666         (THREAD_SET_STACK_GUARD, THREAD_COPY_STACK_GUARD): Define.
667         * sysdeps/powerpc/tls.h (tcbhead_t): Add stack_guard field.
668         (THREAD_SET_STACK_GUARD, THREAD_COPY_STACK_GUARD): Define.
669         * sysdeps/sparc/tls.h (tcbhead_t): Add sysinfo and stack_guard
670         fields.
671         (THREAD_SET_STACK_GUARD, THREAD_COPY_STACK_GUARD): Define.
672         * pthread_create.c (__pthread_create_2_1): Use
673         THREAD_COPY_STACK_GUARD macro.
674         * Makefile: Add rules to build and run tst-stackguard1{,-static}
675         tests.
676         * tst-stackguard1.c: New file.
677         * tst-stackguard1-static.c: New file.
678
679 2005-06-14  Alan Modra  <amodra@bigpond.net.au>
680
681         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h (PSEUDO):
682         Invoke CGOTSETUP and CGOTRESTORE.
683         (CGOTSETUP, CGOTRESTORE): Define.
684
685 2005-05-29  Richard Henderson  <rth@redhat.com>
686
687         * tst-cancel4.c (WRITE_BUFFER_SIZE): New.
688         (tf_write, tf_writev): Use it.
689         (do_test): Use socketpair instead of pipe.  Set SO_SNDBUF to
690         the system minimum.
691
692 2005-05-23  Jakub Jelinek  <jakub@redhat.com>
693
694         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h
695         [IS_IN_librt] (CENABLE, CDISABLE): Use JUMPTARGET instead of
696         __librt_*_asynccancel@local.
697
698 2005-05-17  Alan Modra  <amodra@bigpond.net.au>
699
700         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: Delete
701         all occurrences of JUMPTARGET.  Instead append @local to labels.
702
703 2005-05-20  Jakub Jelinek  <jakub@redhat.com>
704
705         * sysdeps/i386/tls.h (TLS_INIT_TCB_SIZE, TLS_INIT_TCB_ALIGN): Define to
706         size/alignment of struct pthread rather than tcbhead_t.
707         * sysdeps/x86_64/tls.h (TLS_INIT_TCB_SIZE, TLS_INIT_TCB_ALIGN):
708         Likewise.
709         * sysdeps/s390/tls.h (TLS_INIT_TCB_SIZE, TLS_INIT_TCB_ALIGN):
710         Likewise.
711         * sysdeps/sparc/tls.h (TLS_INIT_TCB_SIZE, TLS_INIT_TCB_ALIGN):
712         Likewise.
713
714 2005-05-19  Richard Henderson  <rth@redhat.com>
715
716         * sysdeps/ia64/pthread_spin_lock.c (pthread_spin_lock): Use
717         __sync_val_compare_and_swap, not explicit _si variant.
718         * sysdeps/ia64/pthread_spin_trylock.c (pthread_spin_trylock): Likewise.
719
720 2005-05-03  Ulrich Drepper  <drepper@redhat.com>
721
722         [BZ #915]
723         * sysdeps/pthread/pthread.h: Avoid empty initializers.
724
725 2005-05-03  Jakub Jelinek  <jakub@redhat.com>
726
727         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Remove explicit
728         .eh_frame section, use cfi_* directives.
729
730 2005-04-27  Jakub Jelinek  <jakub@redhat.com>
731
732         * sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: Use <> instead
733         of "" includes.
734
735 2005-04-27  Ulrich Drepper  <drepper@redhat.com>
736
737         [BZ #1075]
738         * tst-cancel17.c (do_test): Add arbitrary factor to make sure
739         aio_write blocks.
740
741 2005-04-27  Roland McGrath  <roland@redhat.com>
742
743         * Makefile (tests): Remove tst-clock2.
744
745         * sysdeps/unix/sysv/linux/timer_create.c (timer_create): Handle
746         CLOCK_PROCESS_CPUTIME_ID and CLOCK_PROCESS_THREAD_ID specially,
747         translating to the kernel clockid_t for our own process/thread clock.
748
749         * sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: New file.
750
751 2005-04-15  Jakub Jelinek  <jakub@redhat.com>
752
753         * old_pthread_cond_init.c: Include <errno.h>.
754         (__pthread_cond_init_2_0): Fail with EINVAL if COND_ATTR is
755         process shared or uses clock other than CLOCK_REALTIME.
756         * pthread_cond_init.c (__pthread_cond_init): Remove bogus comment.
757
758 2005-04-13  David S. Miller  <davem@davemloft.net>
759
760         * sysdeps/sparc/sparc64/jmpbuf-unwind.h: New file.
761         * sysdeps/sparc/sparc64/clone.S: New file.
762
763 2005-04-05  Jakub Jelinek  <jakub@redhat.com>
764
765         [BZ #1102]
766         * sysdeps/pthread/pthread.h (__pthread_cleanup_routine): Use
767         __inline instead of inline.
768         * sysdeps/pthread/bits/libc-lock.h (__libc_cleanup_routine): Likewise.
769
770 2005-03-31  Jakub Jelinek  <jakub@redhat.com>
771
772         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: Use
773         functionally equivalent, but shorter instructions.
774         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S: Likewise.
775         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
776         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S:
777         Likewise.
778         * sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S: Likewise.
779         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: Likewise.
780         * sysdeps/unix/sysv/linux/x86_64/sem_wait.S: Likewise.
781         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: Likewise.
782         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: Likewise.
783         * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Likewise.
784         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S:
785         Likewise.
786         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S: Likewise.
787         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Likewise.
788         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: Likewise.
789         * sysdeps/unix/sysv/linux/x86_64/sem_post.S: Likewise.
790         * sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: Likewise.
791
792 2005-03-28  Daniel Jacobowitz  <dan@codesourcery.com>
793
794         * sysdeps/mips/Makefile: New file.
795         * sysdeps/mips/nptl-sysdep.S: New file.
796         * sysdeps/mips/tcb-offsets.sym: New file.
797         * sysdeps/mips/pthread_spin_lock.S: New file.
798         * sysdeps/mips/pthread_spin_trylock.S: New file.
799         * sysdeps/mips/pthreaddef.h: New file.
800         * sysdeps/mips/tls.h: New file.
801         * sysdeps/mips/jmpbuf-unwind.h: New file.
802         * sysdeps/unix/sysv/linux/mips/lowlevellock.h: New file.
803         * sysdeps/unix/sysv/linux/mips/bits/pthreadtypes.h: New file.
804         * sysdeps/unix/sysv/linux/mips/bits/semaphore.h: New file.
805         * sysdeps/unix/sysv/linux/mips/pthread_once.c: New file.
806         * sysdeps/unix/sysv/linux/mips/fork.c: New file.
807         * sysdeps/unix/sysv/linux/mips/pt-vfork.S: New file.
808         * sysdeps/unix/sysv/linux/mips/vfork.S: New file.
809         * sysdeps/unix/sysv/linux/mips/clone.S: New file.
810         * sysdeps/unix/sysv/linux/mips/createthread.c: New file.
811         * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: New file.
812
813 2005-03-23  Ulrich Drepper  <drepper@redhat.com>
814
815         [BZ #1112]
816         * pthread_create.c (__pthread_create_2_1): Rename syscall error
817         variable to scerr.
818
819 2005-03-10  Jakub Jelinek  <jakub@redhat.com>
820
821         * tst-getpid1.c (do_test): Align stack passed to clone{2,}.
822
823 2005-02-25  Roland McGrath  <roland@redhat.com>
824
825         * alloca_cutoff.c: Correct license text.
826         * tst-unload.c: Likewise.
827         * sysdeps/pthread/allocalim.h: Likewise.
828         * sysdeps/pthread/pt-initfini.c: Likewise.
829         * sysdeps/pthread/bits/libc-lock.h: Likewise.
830         * sysdeps/pthread/bits/sigthread.h: Likewise.
831         * sysdeps/unix/sysv/linux/bits/local_lim.h: Likewise.
832         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Likewise.
833
834 2005-02-16  Roland McGrath  <roland@redhat.com>
835
836         * sysdeps/pthread/pthread-functions.h (struct pthread_functions):
837         Use unsigned int * for ptr_nthreads.
838
839 2005-02-14  Alan Modra  <amodra@bigpond.net.au>
840
841         [BZ #721]
842         * sysdeps/powerpc/tcb-offsets.sym (thread_offsetof): Redefine to suit
843         gcc4.
844
845 2005-02-07  Richard Henderson  <rth@redhat.com>
846
847         [BZ #787]
848         * sysdeps/pthread/pthread.h (__sigsetjmp): Use pointer as first
849         argument.
850
851 2004-11-03  Marcus Brinkmann  <marcus@gnu.org>
852
853         * sysdeps/generic/lowlevellock.h (__generic_mutex_unlock): Fix
854         order of arguments in invocation of atomic_add_zero.
855
856 2005-01-26  Jakub Jelinek  <jakub@redhat.com>
857
858         [BZ #737]
859         * sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S (__new_sem_trywait):
860         Use direct %gs segment access or, if NO_TLS_DIRECT_SEG_REFS,
861         at least gotntpoff relocation and addition.
862         * sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S (sem_timedwait):
863         Likewise.
864         * sysdeps/unix/sysv/linux/i386/i486/sem_post.S (__new_sem_post):
865         Likewise.
866         * sysdeps/unix/sysv/linux/i386/i486/sem_wait.S (__new_sem_wait):
867         Likewise.
868
869 2005-01-06  Ulrich Drepper  <drepper@redhat.com>
870
871         * allocatestack.c (init_one_static_tls): Adjust initialization of DTV
872         entry for static tls deallocation fix.
873         * sysdeps/alpha/tls.h (dtv_t): Change pointer type to be struct which
874         also contains information whether the memory pointed to is static
875         TLS or not.
876         * sysdeps/i386/tls.h: Likewise.
877         * sysdeps/ia64/tls.h: Likewise.
878         * sysdeps/powerpc/tls.h: Likewise.
879         * sysdeps/s390/tls.h: Likewise.
880         * sysdeps/sh/tls.h: Likewise.
881         * sysdeps/sparc/tls.h: Likewise.
882         * sysdeps/x86_64/tls.h: Likewise.
883
884 2004-12-27  Ulrich Drepper  <drepper@redhat.com>
885
886         * init.c (__pthread_initialize_minimal_internal): Use __sigemptyset.
887
888 2004-12-21  Jakub Jelinek  <jakub@redhat.com>
889
890         * sysdeps/i386/tls.h (CALL_THREAD_FCT): Maintain 16 byte alignment of
891         %esp.
892         * Makefile (tests): Add tst-align2.
893         * tst-align2.c: New test.
894         * sysdeps/i386/Makefile (CFLAGS-tst-align{,2}.c): Add
895         -mpreferred-stack-boundary=4.
896
897 2004-12-18  Roland McGrath  <roland@redhat.com>
898
899         * sysdeps/unix/sysv/linux/powerpc/powerpc64/bits/local_lim.h:
900         New file removed withdrawn for the moment.
901
902 2004-12-17  Richard Henderson  <rth@redhat.com>
903
904         * sysdeps/unix/sysv/linux/alpha/clone.S: New file.
905         * sysdeps/alpha/tcb-offsets.sym (TID_OFFSET): New.
906
907 2004-12-16  Ulrich Drepper  <drepper@redhat.com>
908
909         * sysdeps/unix/sysv/linux/powerpc/powerpc64/bits/local_lim.h: New file.
910         Increased PTHREAD_STACK_MIN.
911
912         * tst-context1.c (stacks): Use bigger stack size.
913
914 2004-12-16  Jakub Jelinek  <jakub@redhat.com>
915
916         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S: New file.
917         * sysdeps/sparc/tcb-offsets.sym: Add TID.
918
919 2004-12-15  Jakub Jelinek  <jakub@redhat.com>
920
921         * sysdeps/unix/sysv/linux/s390/s390-32/clone.S: New file.
922         * sysdeps/unix/sysv/linux/s390/s390-64/clone.S: New file.
923         * sysdeps/s390/tcb-offsets.sym (TID): Add.
924
925 2004-12-15  Ulrich Drepper  <drepper@redhat.com>
926
927         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: New file.
928
929 2004-12-14  Ulrich Drepper  <drepper@redhat.com>
930
931         * sysdeps/powerpc/tcb-offsets.sym: Add TID.
932         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: New file.
933
934         * tst-getpid1.c: If child crashes, report this first.  Print which
935         signal.
936
937 2004-12-09  Ulrich Drepper  <drepper@redhat.com>
938
939         * init.c (__pthread_initialize_minimal_internal): Also unblock
940         SIGSETXID.
941
942 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
943
944         * sysdeps/unix/sysv/linux/bits/posix_opt.h (_POSIX_CPUTIME,
945         _POSIX_THREAD_CPUTIME): Define to 0.
946         * sysdeps/pthread/timer_create.c (timer_create): Remove unused code
947         handling CLOCK_PROCESS_CPUTIME_ID and CLOCK_THREAD_CPUTIME_ID.
948         * sysdeps/pthread/timer_routines.c (__timer_signal_thread_pclk,
949         __timer_signal_thread_tclk): Remove.
950         (init_module): Remove their initialization.
951         (thread_cleanup): Remove their cleanup assertions.
952         * sysdeps/pthread/posix-timer.h (__timer_signal_thread_pclk,
953         __timer_signal_thread_tclk): Remove.
954         * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: Removed.
955         * sysdeps/unix/sysv/linux/ia64/bits/posix_opt.h: Removed.
956         * sysdeps/unix/sysv/linux/x86_64/bits/posix_opt.h: Removed.
957
958 2004-12-07  Jakub Jelinek  <jakub@redhat.com>
959
960         * sysdeps/ia64/tcb-offsets.sym (TID): Add.
961         * sysdeps/unix/sysv/linux/ia64/clone2.S: New file.
962
963         * Makefile (tests): Add tst-getpid2.
964         * tst-getpid1.c (TEST_CLONE_FLAGS): Define.
965         (do_test): Use it.  Use __clone2 instead of clone on ia64.
966         * tst-getpid2.c: New test.
967
968 2004-12-07  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
969
970         * sysdeps/unix/sysv/linux/sh/clone.S: New file.
971
972 2004-12-04  Ulrich Drepper  <drepper@redhat.com>
973
974         * Makefile (tests): Add tst-getpid1.
975         * tst-getpid1.c: New file.
976         * sysdeps/unix/sysv/linux/i386/clone.S: New file.
977         * sysdeps/unix/sysv/linux/x86_64/clone.S: New file.
978
979 2004-12-02  Roland McGrath  <roland@redhat.com>
980
981         * Makefile (libpthread-nonshared): Variable removed.
982         ($(objpfx)libpthread_nonshared.a): Target removed.
983         ($(inst_libdir)/libpthread_nonshared.a): Likewise.
984         These are now handled by generic magic from
985         libpthread-static-only-routines being set.
986
987 2004-11-27  Ulrich Drepper  <drepper@redhat.com>
988
989         * sysdeps/unix/sysv/linux/bits/posix_opt.h (_POSIX_PRIORITIZED_IO,
990         _POSIX2_CHAR_TERM, _POSIX_THREAD_PRIO_INHERIT,
991         _POSIX_THREAD_PRIO_PROTECT): Define.
992         * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: Likewise.
993         * sysdeps/unix/sysv/linux/ia64/bits/posix_opt.h: Likewise.
994         * sysdeps/unix/sysv/linux/x86_64/bits/posix_opt.h: Likewise.
995
996 2004-11-26  Jakub Jelinek  <jakub@redhat.com>
997
998         * sysdeps/unix/sysv/linux/bits/posix_opt.h (_POSIX_ADVISORY_INFO,
999         _POSIX_SPORADIC_SERVER, _POSIX_THREAD_SPORADIC_SERVER, _POSIX_TRACE,
1000         _POSIX_TRACE_EVENT_FILTER, _POSIX_TRACE_INHERIT, _POSIX_TRACE_LOG,
1001         _POSIX_TYPED_MEMORY_OBJECTS, _POSIX_IPV6, _POSIX_RAW_SOCKETS): Define.
1002         * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: Likewise.
1003         * sysdeps/unix/sysv/linux/ia64/bits/posix_opt.h: Likewise.
1004         * sysdeps/unix/sysv/linux/x86_64/bits/posix_opt.h: Likewise.
1005
1006 2004-11-24  Ulrich Drepper  <drepper@redhat.com>
1007
1008         * sysdeps/x86_64/Makefile [nptl]: Define CFLAGS-pthread_create.c.
1009
1010         * Makefile (libpthread-routines): Add pthread_setschedprio.
1011         * Versions [libpthread, GLIBC_2.3.4]: Add pthread_setschedprio.
1012         * sysdeps/pthread/pthread.h: Declare pthread_setschedprio.
1013         * pthread_setschedprio.c: New file.
1014
1015 2004-11-20  Jakub Jelinek  <jakub@redhat.com>
1016
1017         * pthread_create.c (pthread_cancel): Add PTHREAD_STATIC_FN_REQUIRE.
1018         * pthread_cancel.c (pthread_create): Likewise.
1019
1020         * Makefile (libpthread-routines): Add vars.
1021         * sysdeps/pthread/createthread.c (__pthread_multiple_threads): Remove.
1022         * init.c (__default_stacksize, __is_smp): Remove.
1023         * vars.c: New file.
1024         * pthreadP.h (__find_thread_by_id): If !SHARED, add weak_function
1025         and define a wrapper macro.
1026         (PTHREAD_STATIC_FN_REQUIRE): Define.
1027         * allocatestack.c (__find_thread_by_id): Undefine.
1028         * pthread_create (__pthread_keys): Remove.
1029         (pthread_mutex_lock, pthread_mutex_unlock, pthread_once,
1030         pthread_key_create, pthread_setspecific, pthread_getspecific): Add
1031         PTHREAD_STATIC_FN_REQUIRE.
1032
1033 2004-11-18  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
1034
1035         * sysdeps/sh/tls.h (DB_THREAD_SELF): Set the correct bias
1036         parameter to REGISTER macro.
1037
1038 2004-11-17  Roland McGrath  <roland@redhat.com>
1039
1040         * sysdeps/unix/sysv/linux/timer_routines.c (__start_helper_thread):
1041         Make sure SIGCANCEL is blocked as well.
1042
1043 2004-11-10  Jakub Jelinek  <jakub@redhat.com>
1044
1045         * sysdeps/pthread/setxid.h: New file.
1046         * sysdeps/pthread/pthread-functions.h (HAVE_PTR__NPTL_SETXID): Remove.
1047         (struct xid_command): Add forward decl.
1048         (struct pthread_functions): Change return type of __nptl_setxid hook
1049         to int.
1050         * pthreadP.h (__nptl_setxid): Change return type to int.
1051         * allocatestack.c (__nptl_setxid): Call INTERNAL_SYSCALL_NCS in the
1052         calling thread, return its return value and set errno on failure.
1053         * descr.h (struct xid_command): Change id type to long array.
1054
1055         * Makefile: Add rules to build and test tst-setuid1 and
1056         tst-setuid1-static.
1057         * tst-setuid1.c: New test.
1058         * tst-setuid1-static.c: New test.
1059
1060 2004-11-10  Jakub Jelinek  <jakub@redhat.com>
1061
1062         * Makefile (tests): Add tst-exit3.
1063         * tst-exit3.c: New test.
1064
1065 2004-11-09  Ulrich Drepper  <drepper@redhat.com>
1066
1067         * Makefile (tests): Add tst-exit2.
1068         * tst-exit2.c: New file.
1069
1070 2004-11-09  Roland McGrath  <roland@redhat.com>
1071
1072         [BZ #530]
1073         * sysdeps/pthread/createthread.c (do_clone): Increment __nptl_nthreads
1074         here, before calling clone.
1075         * pthread_create.c (start_thread): Don't do it here.
1076
1077 2004-11-02  Jakub Jelinek  <jakub@redhat.com>
1078
1079         * sysdeps/unix/sysv/linux/smp.h: Include <errno.h>.
1080
1081 2004-10-29  Kaz  Kojima  <kkojima@rr.iij4u.or.jp>
1082
1083         * sysdeps/unix/sysv/linux/sh/sem_timedwait.S (sem_timedwait):
1084         Set ETIMEDOUT to errno when time is up.  Tweak to avoid
1085         assembler warning.
1086
1087 2004-10-28  Jakub Jelinek  <jakub@redhat.com>
1088
1089         * pthread_create.c (__pthread_create_2_1): Avoid leaking stacks
1090         if sched_priority is not between minprio and maxprio.
1091
1092 2004-10-25  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
1093
1094         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S
1095         (__pthread_cond_timedwait): Use clock_gettime syscall if exists.
1096
1097         * sysdeps/unix/sysv/linux/sh/lowlevellock.S
1098         (__lll_mutex_timedlock_wait): Fix a bad branch condition.
1099
1100 2004-10-24  Ulrich Drepper  <drepper@redhat.com>
1101
1102         * sysdeps/unix/sysv/linux/smp.h (is_smp_system): Use
1103         not-cancelable I/O functions.
1104
1105 2004-10-21  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
1106
1107         * sysdeps/unix/sysv/linux/sh/lowlevellock.S
1108         (__lll_mutex_timedlock_wait): If woken but cannot get the lock,
1109         make sure 2 is stored in the futex and we looked at the old value.
1110         Fix a few other problems to return the correct value.
1111
1112 2004-10-14  Richard Henderson  <rth@redhat.com>
1113
1114         * sysdeps/alpha/tcb-offsets.sym (thread_offsetof): Redefine to
1115         make gcc4 happy.
1116
1117 2004-10-06  Jakub Jelinek  <jakub@redhat.com>
1118
1119         * sysdeps/unix/sysv/linux/jmp-unwind.c: Include pthreadP.h instead
1120         of pthread-functions.h and pthreaddef.h.
1121         * sysdeps/unix/sysv/linux/s390/jmp-unwind.c: Likewise.
1122
1123         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h (pthread_cond_t):
1124         Change __data.__nwaiters from int to unsigned int.
1125
1126         * tst-clock2.c (do_test): Don't fail if _POSIX_THREAD_CPUTIME == 0 and
1127         sysconf (_SC_THREAD_CPUTIME) returns negative value.
1128
1129         * allocatestack.c (__find_thread_by_id): Move attribute_hidden
1130         before return type.
1131
1132         * sysdeps/s390/jmpbuf-unwind.h: Include bits/wordsize.h.
1133         (JMPBUF_CFA_UNWINDS_ADJ): Subtract 96 resp. 160 bytes from CFA.
1134
1135 2004-10-06  Ulrich Drepper  <drepper@redhat.com>
1136
1137         * tst-cancel4.c (tf_msgrcv): Check for failure in msgget.  If the
1138         test fails, remove message queue.
1139         (tf_msgsnd): Likewise.
1140
1141 2004-10-05  Jakub Jelinek  <jakub@redhat.com>
1142
1143         * tst-clock1.c: Change #ifdef to #if defined.
1144         * tst-clock2.c: Likewise.
1145         * tst-cond11.c: Likewise.
1146
1147         * sysdeps/pthread/timer_create.c (timer_create): Use
1148         defined _POSIX_CPUTIME && _POSIX_CPUTIME >= 0 instead of
1149         defined CLOCK_PROCESS_CPUTIME_ID #ifs and similarly for
1150         THREAD_CPUTIME.
1151
1152 2004-10-05  Jakub Jelinek  <jakub@redhat.com>
1153
1154         * sysdeps/unix/sysv/linux/x86_64/bits/posix_opt.h (_POSIX_CPUTIME,
1155         _POSIX_THREAD_CPUTIME): Define to 0.
1156
1157 2004-10-04  Ulrich Drepper  <drepper@redhat.com>
1158
1159         * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: Define _POSIX_CPUTIME
1160         and _POSIX_THREAD_CPUTIME to zero.
1161         * sysdeps/unix/sysv/linux/ia64/bits/posix_opt.h: Likewise.
1162         * tst-barrier2.c: Fix testing for POSIX feature.
1163         * tst-clock1.c: Likewise.
1164         * tst-clock2.c: Likewise.
1165         * tst-cond11.c: Likewise.
1166         * tst-cond4.c: Likewise.
1167         * tst-cond6.c: Likewise.
1168         * tst-flock2.c: Likewise.
1169         * tst-mutex4.c: Likewise.
1170         * tst-mutex9.c: Likewise.
1171         * tst-rwlock12.c: Likewise.
1172         * tst-rwlock4.c: Likewise.
1173         * tst-signal1.c: Likewise.
1174         * tst-spin2.c: Likewise.
1175         * sysdeps/pthread/posix-timer.h: Likewise.
1176         * sysdeps/pthread/timer_create.c: Likewise.
1177         * sysdeps/pthread/timer_routines.c: Likewise.
1178
1179 2004-10-01  Ulrich Drepper  <drepper@redhat.com>
1180
1181         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S
1182         (__lll_mutex_timedlock_wait): Address futex correctly.
1183
1184         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S
1185         (__lll_mutex_timedlock_wait): If woken but cannot get the lock,
1186         make sure 2 is stored in the futex and we looked at the old value.
1187         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S
1188         (__lll_mutex_timedlock_wait): Likewise.  Fix a few other problems
1189         which might very well made the code not working at all before.
1190         [BZ #417]
1191
1192 2004-09-28  Ulrich Drepper  <drepper@redhat.com>
1193
1194         * sysdeps/unix/sysv/linux/pthread_kill.c (__pthread_kill): Don't
1195         allow SIGSETXID to be sent.
1196         * sysdeps/pthread/sigaction.c (__sigaction): Don't allow action
1197         for SIGSETXID to be defined.
1198         * sysdeps/pthread/pthread_sigmask.c (pthread_sigmask): Make sure
1199         SIGSETXID cannot be blocked.
1200
1201         * sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h (pthread_cond_t):
1202         Add __extension__ to long long types.
1203         * sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h: Likewise.
1204         * sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Likewise.
1205         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Likewise.
1206         * sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h: Likewise.
1207         * sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h: Likewise.
1208         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h: Likewise.
1209         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: Likewise.
1210
1211 2004-09-25  Ulrich Drepper  <drepper@redhat.com>
1212
1213         * descr.h (struct pthread): Add stopped_start field.
1214         * sysdeps/pthread/createthread.c (create_thread): Set
1215         start_stopped flag in descriptor for new thread appropriately.
1216         * pthread_create.c (start_thread): Only take lock to be stopped on
1217         startup if stopped_start flag says so.
1218
1219 2004-09-24  Ulrich Drepper  <drepper@redhat.com>
1220
1221         * pthread_create.c (__pthread_create_2_1): Remember whether thread
1222         is created detached and if yes, do not try to free the stack in case
1223         the thread creation failed.
1224         * sysdeps/pthread/createthread.c (do_clone): Free stack here if clone
1225         call fails.  Don't depend on INTERNAL_SYSCALL_ERRNO return zero in
1226         case there has been no error.  [BZ #405]
1227
1228         * pthread_create.c (start_thread): Don't wait for scheduler data
1229         etc to be set at the beginning of the function.  The cancellation
1230         infrastructure must have been set up.  And enable async
1231         cancellation before potentially going to sleep.  [BZ #401]
1232
1233 2004-09-20  Ulrich Drepper  <drepper@redhat.com>
1234
1235         * Versions: Remove exports for pthread_set*id_np functions.
1236         * sysdeps/pthread/pthread.h: Remove pthread_set*id_np prototypes
1237         for now.
1238         * Makefile: Don't build pthread_set*id code for now.
1239
1240 2004-09-19  Ulrich Drepper  <drepper@redhat.com>
1241
1242         * sysdeps/unix/sysv/linux/allocrtsig.c: Allocate second signal for
1243         internal use.
1244         * allocatestack.c (__nptl_setxid): New function.
1245         * descr.h (struct xid_command): Define type.
1246         * init.c (pthread_functions): Add ptr__nptl_setxid initialization.
1247         (sighandler_setxid): New function.
1248         (__pthread_initialize_minimal): Register sighandler_setxid for
1249         SIGCANCEL.
1250         * pt-allocrtsig.c: Update comment.
1251         * pthreadP.h: Define SIGSETXID.  Declare __xidcmd variable.
1252         Declare __nptl_setxid.
1253         * sysdeps/pthread/pthread-functions.h: Add ptr__nptl_setxid.
1254         * sysdeps/pthread/pthread.h: Declare pthread_setgid_np,
1255         pthread_setuid_np, pthread_setegid_np, pthread_seteuid_np,
1256         pthread_setregid_np, pthread_setreuid_np, pthread_setresgid_np,
1257         and pthread_setresuid_np.
1258         * pthread_setgid_np.c: New file.
1259         * pthread_setuid_np.c: New file.
1260         * pthread_setegid_np.c: New file.
1261         * pthread_seteuid_np.c: New file.
1262         * pthread_setregid_np.c: New file.
1263         * pthread_setreuid_np.c: New file.
1264         * pthread_setresgid_np.c: New file.
1265         * pthread_setresuid_np.c: New file.
1266         * Versions [libpthread, GLIBC_2.3.4]: Add pthread_setgid_np,
1267         pthread_setuid_np, pthread_setegid_np, pthread_seteuid_np,
1268         pthread_setregid_np, pthread_setreuid_np, pthread_setresgid_np,
1269         and pthread_setresuid_np.
1270         * Makefile (libpthread-routines): Add pthread_setuid, pthread_seteuid,
1271         pthread_setreuid, pthread_setresuid, pthread_setgid, pthread_setegid,
1272         pthread_setregid, and pthread_setresgid.
1273
1274 2004-09-18  Ulrich Drepper  <drepper@redhat.com>
1275
1276         * allocatestack.c (allocate_stack): Return EAGAIN instead of
1277         ENOMEM when out of memory.
1278
1279 2004-09-10  Roland McGrath  <roland@redhat.com>
1280
1281         [BZ #379]
1282         * allocatestack.c (allocate_stack): Remove [__ASSUME_CLONE_STOPPED]
1283         code, since we don't try to use the broken CLONE_STOPPED any more.
1284         * pthread_create.c (start_thread): Likewise.
1285
1286 2004-09-15  Richard Henderson  <rth@redhat.com>
1287
1288         * sysdeps/unix/sysv/linux/alpha/vfork.S: Use libc_hidden_def.
1289
1290 2004-09-01  David Mosberger  <davidm@hpl.hp.com>
1291
1292         * sysdeps/unix/sysv/linux/ia64/jmpbuf-unwind.h
1293         (__libc_unwind_longjmp): Delete macro and declare as function.
1294         * sysdeps/unix/sysv/linux/ia64/Makefile (sysdep_routines): Mention
1295         __ia64_longjmp, sigstack_longjmp, and __sigstack_longjmp for
1296         nptl directory.
1297         * sysdeps/unix/sysv/linux/ia64/__ia64_longjmp.S: New file.
1298         * sysdeps/unix/sysv/linux/ia64/__sigstack_longjmp.c: New file.
1299         * sysdeps/unix/sysv/linux/ia64/unwind_longjmp.c: New file.
1300
1301 2004-09-12  Ulrich Drepper  <drepper@redhat.com>
1302
1303         * sysdeps/pthread/pthread.h: Make rwlock prototypes available also
1304         for __USE_XOPEN2K.
1305         * sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h: Define rwlock
1306         types also for __USE_XOPEN2K.
1307         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h: Likewise.
1308         * sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h: Likewise.
1309         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Likewise.
1310         * sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Likewise.
1311         * sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h: Likewise.
1312         * sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h: Likewise.
1313         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: Likewise.
1314         [BZ #320]
1315
1316 2004-09-08  Ulrich Drepper  <drepper@redhat.com>
1317
1318         * sysdeps/pthread/pthread.h
1319         (PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP): Make safe for C++.
1320         (PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP): Likewise.
1321         (PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP): Likewise.
1322         (PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP): Likewise.
1323         [BZ #375]
1324
1325 2004-09-07  Ulrich Drepper  <drepper@redhat.com>
1326
1327         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: Allow
1328         PSEUDO to be used with . prefix.
1329
1330         * sysdeps/unix/sysv/linux/alpha/pthread_once.c (__pthread_once):
1331         Use atomic_increment instead of atomic_exchange_and_add.
1332         * sysdeps/unix/sysv/linux/sparc/pthread_once.c (__pthread_once):
1333         Likewise.
1334         * sysdeps/unix/sysv/linux/ia64/pthread_once.c (__pthread_once):
1335         Likewise.
1336         * sysdeps/unix/sysv/linux/powerpc/pthread_once.c (__pthread_once):
1337         Likewise.
1338
1339         * allocatestack.c (allocate_stack): Use atomic_increment_val
1340         instead of atomic_exchange_and_add.
1341         * sysdeps/unix/sysv/linux/sem_post.c (__new_sem_post): Likewise.
1342         * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post):
1343         Likewise.
1344         * sysdeps/pthread/pthread_barrier_wait.c (pthread_barrier_wait):
1345         Likewise.
1346
1347         * sysdeps/pthread/pthread.h (pthread_once): Remove __THROW since
1348         the initialization function might throw.
1349
1350 2005-09-05  Richard Henderson  <rth@redhat.com>
1351
1352         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h (SINGLE_THREAD_P):
1353         Move definition inside libpthread, libc, librt check.  Provide
1354         definition for rtld.
1355
1356 2004-09-02  Ulrich Drepper  <drepper@redhat.com>
1357
1358         * sysdeps/alpha/jmpbuf-unwind.h: Define __libc_unwind_longjmp.
1359         * sysdeps/i386/jmpbuf-unwind.h: Likewise
1360         * sysdeps/powerpc/jmpbuf-unwind.h: Likewise.
1361         * sysdeps/s390/jmpbuf-unwind.h: Likewise.
1362         * sysdeps/sh/jmpbuf-unwind.h: Likewise.
1363         * sysdeps/sparc/sparc32/jmpbuf-unwind.h: Likewise.
1364         * sysdeps/unix/sysv/linux/ia64/jmpbuf-unwind.h: Likewise.
1365         * sysdeps/x86_64/jmpbuf-unwind.h: Likewise.
1366         * unwind.c: Use it.
1367
1368         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h (pthread_cond_t):
1369         Rename __data.__clock to __data.__nwaiters, make it unsigned int.
1370         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h (pthread_cond_t):
1371         Likewise.
1372         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S:
1373         Decrement __nwaiters.  If pthread_cond_destroy has been called and
1374         this is the last waiter, signal pthread_cond_destroy caller and
1375         avoid using the pthread_cond_t structure after unlock.
1376         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: Likewise.
1377         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Likewise.
1378         Read clock type from the least significant bits of __nwaiters instead
1379         of __clock.
1380         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: Likewise.
1381         * sysdeps/unix/sysv/linux/internaltypes.h: Define COND_CLOCK_BITS.
1382
1383 2004-08-31  Jakub Jelinek  <jakub@redhat.com>
1384
1385         [BZ #342]
1386         * Makefile (tests): Add tst-cond20 and tst-cond21.
1387         * tst-cond20.c: New test.
1388         * tst-cond21.c: New test.
1389         * sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h
1390         (pthread_cond_t): Rename __data.__clock to __data.__nwaiters, make
1391         it unsigned int.
1392         * sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h (pthread_cond_t):
1393         Likewise.
1394         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
1395         (pthread_cond_t): Likewise.
1396         * sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h (pthread_cond_t):
1397         Likewise.
1398         * sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h (pthread_cond_t):
1399         Likewise.
1400         * sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h (pthread_cond_t):
1401         Likewise.
1402         * sysdeps/unix/sysv/linux/lowlevelcond.sym (cond_clock): Remove.
1403         (cond_nwaiters): New.
1404         (clock_bits): New.
1405         * pthread_cond_destroy.c (__pthread_cond_destroy): Return EBUSY
1406         if there are waiters not signalled yet.
1407         Wait until all already signalled waiters wake up.
1408         * sysdeps/pthread/pthread_cond_wait.c (__condvar_cleanup): Decrement
1409         __nwaiters.  If pthread_cond_destroy has been called and this is the
1410         last waiter, signal pthread_cond_destroy caller and avoid using
1411         the pthread_cond_t structure after unlock.
1412         (__pthread_cond_wait): Increment __nwaiters in the beginning,
1413         decrement it when leaving.  If pthread_cond_destroy has been called
1414         and this is the last waiter, signal pthread_cond_destroy caller.
1415         * sysdeps/pthread/pthread_cond_timedwait.c (__pthread_cond_timedwait):
1416         Likewise.  Read clock type from the least significant bits of
1417         __nwaiters instead of __clock.
1418         * pthread_condattr_setclock.c (pthread_condattr_setclock): Check
1419         whether clock ID can be encoded in COND_CLOCK_BITS bits.
1420         * pthread_condattr_getclock.c (pthread_condattr_getclock): Decode
1421         clock type just from the last COND_CLOCK_BITS bits of value.
1422         * pthread_cond_init.c (__pthread_cond_init): Initialize __nwaiters
1423         instead of __clock, just from second bit of condattr's value.
1424
1425 2004-08-30  Jakub Jelinek  <jakub@redhat.com>
1426
1427         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: Include
1428         bits/wordsize.h.  Make the header match i386 header when __WORDSIZE
1429         != 64.
1430         * sysdeps/unix/sysv/linux/x86_64/bits/semaphore.h: Likewise.
1431
1432 2004-08-15  Roland McGrath  <roland@frob.com>
1433
1434         * pthread_atfork.c: Update copyright terms including special exception
1435         for these trivial files, which are statically linked into executables
1436         that use dynamic linking for the significant library code.
1437
1438 2004-08-09  Jakub Jelinek  <jakub@redhat.com>
1439
1440         * DESIGN-rwlock.txt: Add decreasing of nr_readers_queued to
1441         pthread_rwlock_rdlock.
1442         * sysdeps/pthread/pthread_rwlock_rdlock (__pthread_rwlock_rdlock):
1443         Decrease __nr_readers_queued after reacquiring lock.
1444         * sysdeps/pthread/pthread_rwlock_timedrdlock
1445         (pthread_rwlock_timedrdlock): Likewise.
1446         Reported by Bob Cook <bobcook47@hotmail.com>.
1447
1448 2004-08-11  Jakub Jelinek  <jakub@redhat.com>
1449
1450         * tst-rwlock14.c (tf): Read main thread handle from *ARG
1451         before pthread_barrier_wait.
1452
1453 2004-08-07  Ulrich Drepper  <drepper@redhat.com>
1454
1455         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S:
1456         Remove unnecessary exception handling data.
1457
1458 2004-07-23  Jakub Jelinek  <jakub@redhat.com>
1459
1460         [BZ #284]
1461         * sysdeps/pthread/pthread.h (pthread_getcpuclockid): Use __clockid_t
1462         instead of clockid_t.
1463
1464 2004-07-21  Roland McGrath  <roland@redhat.com>
1465
1466         * Makefile ($(objpfx)multidir.mk): Use $(make-target-directory).
1467
1468 2004-07-19  Roland McGrath  <roland@redhat.com>
1469
1470         * tst-cancel4.c (tf_waitid): Use WEXITED flag bit if available.
1471
1472 2004-07-02  Roland McGrath  <roland@redhat.com>
1473
1474         * configure: Don't exit.
1475
1476 2004-07-14  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
1477
1478         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S
1479         (__pthread_cond_timedwait): Check for invalid nanosecond in
1480         timeout value.
1481
1482 2004-07-07  Ulrich Drepper  <drepper@redhat.com>
1483
1484         * Makefile: Add rules to build and run tst-fini1.
1485         * tst-fini1.c: New file.
1486         * tst-fini1mod.c: New file.
1487
1488 2004-07-05  Ulrich Drepper  <drepper@redhat.com>
1489
1490         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Define NO_CANCELLATION
1491         if no cancellation support is needed.
1492         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: Likewise.
1493         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
1494         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
1495         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: Likewise.
1496         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: Likewise.
1497         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
1498         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
1499         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Likewise.
1500         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
1501
1502         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Define __NR_futex
1503         only if not already defined.
1504
1505 2004-07-05  Jakub Jelinek  <jakub@redhat.com>
1506
1507         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h (lll_unlock): Use
1508         constraint "m" instead of "0" for futex.
1509
1510         * shlib-versions: Add powerpc64-.*-linux.*.
1511
1512 2004-07-04  Jakub Jelinek  <jakub@redhat.com>
1513
1514         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S
1515         (pthread_rwlock_timedrdlock): Use cmpq instead of cmpl to check
1516         for valid tv_nsec.
1517         * tst-rwlock14.c (do_test): Test for invalid tv_nsec equal to
1518         1 billion and 64-bit tv_nsec which is valid when truncated to 32
1519         bits.
1520
1521 2004-06-29  Roland McGrath  <roland@redhat.com>
1522
1523         * Banner: NPTL no longer has its own version number.
1524         * Makefile (nptl-version): Variable removed.
1525         * sysdeps/pthread/Makefile (CFLAGS-confstr.c): Set LIBPTHREAD_VERSION
1526         using $(version), the glibc version number.
1527
1528 2004-06-29  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
1529
1530         * sysdeps/unix/sysv/linux/sh/pthread_once.S (__pthread_once):
1531         Fix branch offset for a PLT entry.
1532         * sysdeps/unix/sysv/linux/sh/sem_post.S (__new_sem_post):
1533         Likewise.
1534         * sysdeps/unix/sysv/linux/sh/sem_timedwait.S (sem_timedwait):
1535         Likewise.
1536         * sysdeps/unix/sysv/linux/sh/sem_trywait.S (__new_sem_trywait):
1537         Likewise.
1538         * sysdeps/unix/sysv/linux/sh/sem_wait.S (__new_sem_wait):
1539         Likewise.
1540
1541 2004-06-28  Jakub Jelinek  <jakub@redhat.com>
1542
1543         * sysdeps/alpha/tcb-offsets.sym (MULTIPLE_THREADS_OFFSET): Define
1544         unconditionally.
1545
1546 2004-06-28  Jakub Jelinek  <jakub@redhat.com>
1547
1548         * sysdeps/pthread/pthread_rwlock_timedwrlock.c
1549         (pthread_rwlock_timedwrlock): Return EINVAL if tv_nsec is negative,
1550         instead of tv_sec.
1551         * sysdeps/pthread/pthread_rwlock_timedrdlock.c
1552         (pthread_rwlock_timedrdlock): Likewise.
1553
1554 2004-06-22  Jakub Jelinek  <jakub@redhat.com>
1555
1556         * sysdeps/unix/sysv/linux/s390/lowlevellock.h (lll_futex_requeue):
1557         Set __r7 to val, not mutex.
1558
1559 2004-06-27  Ulrich Drepper  <drepper@redhat.com>
1560
1561         * Makefile: Add rules to build tst-rwlock14.
1562         * tst-rwlock14.c: New file.
1563
1564 2004-06-24  Boris Hu  <boris.hu@intel.com>
1565
1566         * sysdeps/pthread/pthread_rwlock_timedrdlock.c: Add timeout validation
1567         check.
1568         * sysdeps/pthread/pthread_rwlock_timedwrlock.c: Likewise.
1569
1570 2004-06-19  Andreas Jaeger  <aj@suse.de>
1571
1572         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: Fix
1573         assembler in last patch.
1574
1575 2004-06-17  Ulrich Drepper  <drepper@redhat.com>
1576
1577         * sysdeps/pthread/pthread_cond_timedwait.c
1578         (__pthread_cond_timedwait): Also check for negativ nanoseconds.
1579         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S
1580         (__pthread_cond_timedwait): Check for invalid nanosecond in
1581         timeout value.
1582         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: Likewise.
1583         * tst-cond19.c: New file.
1584         * Makefile: Add rules to build and run tst-cond19.
1585
1586 2004-06-15  Steven Munroe  <sjmunroe@us.ibm.com>
1587
1588         * tst-context1.c (GUARD_PATTERN): Defined.
1589         (tst_context_t): Define struct containing ucontext_t & guard words.
1590         (ctx): Declare as an array of tst_context_t.
1591         (fct): Verify uc_link & guard words are still valid.
1592         (tf): Initialize guard words in ctx.  Adjust ctx refs for new struct.
1593
1594 2004-06-13  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
1595
1596         * sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h (pthread_cond_t):
1597         Add __data.__futex field, reshuffle __data.__clock.
1598         * sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S
1599         (__pthread_cond_signal): Increment __futex at the same time as
1600         __wakeup_seq or __total_seq.  Pass address of __futex instead of
1601         address of low 32-bits of __wakeup_seq to futex syscall.
1602         * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S
1603         (__pthread_cond_wait): Likewise.  Pass __futex value from before
1604         releasing internal lock to FUTEX_WAIT.
1605         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S
1606         (__pthread_cond_timedwait): Likewise.
1607         * sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S
1608         (FUTEX_CMP_REQUEUE): Define.
1609         (__pthread_cond_broadcast): Set __futex to 2 * __total_seq.
1610         Use FUTEX_CMP_REQUEUE operation instead of FUTEX_REQUEUE.
1611         Pass __futex value from before the unlock and __futex address instead
1612         of address of low 32-bits of __wakeup_seq to futex syscall.
1613         Fallback to FUTEX_WAKE all on any errors.
1614
1615 2004-06-08  Jakub Jelinek  <jakub@redhat.com>
1616
1617         * pthread_mutexattr_getpshared.c (pthread_mutex_getpshared): Fix
1618         comment typo.
1619         * pthread_mutexattr_gettype.c (pthread_mutexattr_gettype): Likewise.
1620         * pthread_mutexattr_init.c (__pthread_mutexattr_init): Likewise.
1621         * pthread_mutexattr_settype.c (__pthread_mutexattr_settype): Likewise.
1622         * pthread_mutexattr_setpshared.c (pthread_mutexattr_setpshared):
1623         Likewise.  Reported by Bob Cook <bobcook47@hotmail.com>.
1624
1625 2004-06-11  Martin Schwidefsky  <schwidefsky@de.ibm.com>
1626
1627         * sysdeps/unix/sysv/linux/s390/lowlevellock.h (lll_compare_and_swap):
1628         Add memory clobber to inline assembly.
1629         (__lll_mutex_trylock): Likewise.
1630         (__lll_mutex_cond_trylock): Likewise.
1631
1632 2004-06-07  Martin Schwidefsky  <schwidefsky@de.ibm.com>
1633
1634         * sysdeps/unix/sysv/linux/s390/lowlevellock.h (lll_futex_requeue):
1635         Pass val argument as 6th system call argument in %r7.
1636
1637 2004-05-21  Jakub Jelinek  <jakub@redhat.com>
1638
1639         * Makefile (tests): Add tst-cond16.
1640         * sysdeps/unix/sysv/linux/lowlevelcond.sym (cond_futex): Add.
1641         * pthread_cond_init.c (__pthread_cond_init): Clear __data.__futex.
1642         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h (pthread_cond_t):
1643         Add __data.__futex field, reshuffle __data.__clock.
1644         * sysdeps/unix/sysv/linux/i386/pthread_cond_signal.S
1645         (__pthread_cond_signal): Increment __futex at the same time as
1646         __wakeup_seq or __total_seq.  Pass address of __futex instead of
1647         address of low 32-bits of __wakeup_seq to futex syscall.
1648         * sysdeps/unix/sysv/linux/i386/pthread_cond_wait.S
1649         (__pthread_cond_wait): Likewise.  Pass __futex value from before
1650         releasing internal lock to FUTEX_WAIT.
1651         * sysdeps/unix/sysv/linux/i386/pthread_cond_timedwait.S
1652         (__pthread_cond_timedwait): Likewise.
1653         * sysdeps/unix/sysv/linux/i386/pthread_cond_broadcast.S
1654         (FUTEX_CMP_REQUEUE): Define.
1655         (__pthread_cond_broadcast): Set __futex to 2 * __total_seq.
1656         Use FUTEX_CMP_REQUEUE operation instead of FUTEX_REQUEUE.
1657         Pass __futex value from before the unlock and __futex address instead
1658         of address of low 32-bits of __wakeup_seq to futex syscall.
1659         Fallback to FUTEX_WAKE all on any errors.
1660         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h (FUTEX_CMP_REQUEUE):
1661         Define.
1662         (lll_futex_requeue): Add val argument, use FUTEX_CMP_REQUEUE
1663         internally.  Return non-zero if error, zero if success.
1664         * sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h (pthread_cond_t):
1665         Add __data.__futex field, reshuffle __data.__clock.
1666         * sysdeps/unix/sysv/linux/s390/lowlevellock.h (FUTEX_CMP_REQUEUE):
1667         Define.
1668         (lll_futex_requeue): Add val argument, return 1 unconditionally
1669         for the time being.
1670         * sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h (pthread_cond_t):
1671         Add __data.__futex field, reshuffle __data.__clock.
1672         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h (FUTEX_CMP_REQUEUE):
1673         Define.
1674         (lll_futex_requeue): Add val argument, use FUTEX_CMP_REQUEUE
1675         internally.  Return non-zero if error, zero if success.
1676         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
1677         (pthread_cond_t): Add __data.__futex field, reshuffle __data.__clock.
1678         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h (FUTEX_CMP_REQUEUE):
1679         Define.
1680         (lll_futex_requeue): Add val argument, use FUTEX_CMP_REQUEUE
1681         internally.  Return non-zero if error, zero if success.
1682         * sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h (pthread_cond_t):
1683         Add __data.__futex field, reshuffle __data.__clock.
1684         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h (FUTEX_CMP_REQUEUE):
1685         Define.
1686         (lll_futex_requeue): Add val argument, use FUTEX_CMP_REQUEUE
1687         internally.  Return non-zero if error, zero if success.
1688         * sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h (pthread_cond_t):
1689         Add __data.__futex field, reshuffle __data.__clock.
1690         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h (pthread_cond_t):
1691         Add __data.__futex field, reshuffle __data.__clock.
1692         * sysdeps/pthread/pthread_cond_signal.c (__pthread_cond_signal):
1693         Increment __futex at the same time as __wakeup_seq or __total_seq.
1694         Pass address of __futex instead of address of low 32-bits of
1695         __wakeup_seq to futex syscall.
1696         * sysdeps/pthread/pthread_cond_wait.c (__pthread_cond_wait): Likewise.
1697         Pass __futex value from before releasing internal lock
1698         to FUTEX_WAIT.
1699         * sysdeps/pthread/pthread_cond_timedwait.c (__pthread_cond_timedwait):
1700         Likewise.  Avoid unnecessary shadowing of variables.
1701         * sysdeps/pthread/pthread_cond_broadcast.c (__pthread_cond_broadcast):
1702         Set __futex to 2 * __total_seq.  Pass __futex value from before the
1703         unlock and __futex address instead of address of low 32-bits of
1704         __wakeup_seq to futex_requeue macro, adjust for new return value
1705         meaning.
1706         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S
1707         (__pthread_cond_signal): Increment __futex at the same time as
1708         __wakeup_seq or __total_seq.  Pass address of __futex instead of
1709         address of low 32-bits of __wakeup_seq to futex syscall.
1710         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S
1711         (__pthread_cond_wait): Likewise.  Pass __futex value from before
1712         releasing internal lock to FUTEX_WAIT.
1713         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S
1714         (__pthread_cond_timedwait): Likewise.
1715         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S
1716         (FUTEX_CMP_REQUEUE): Define.
1717         (__pthread_cond_broadcast): Set __futex to 2 * __total_seq.
1718         Use FUTEX_CMP_REQUEUE operation instead of FUTEX_REQUEUE.
1719         Pass __futex value from before the unlock and __futex address instead
1720         of address of low 32-bits of __wakeup_seq to futex syscall.
1721         Fallback to FUTEX_WAKE all on any errors.
1722
1723 2004-06-03  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
1724
1725         * sysdeps/unix/sysv/linux/sh/lowlevellock.h (lll_mutex_lock):
1726         Add nop to align the end of critical section.
1727         (lll_mutex_cond_lock, lll_mutex_timedlock): Likewise.
1728
1729 2004-06-01  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
1730
1731         * sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h (pthread_cond_t):
1732         Add __broadcast_seq field.
1733         * sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: Mark
1734         all waiters as woken with woken_seq and bump broadcast counter.
1735         * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Use new
1736         __broadcast_seq.  Increment __woken_seq correctly when cleanuped.
1737         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Likewise.
1738         Comment typo fixes.  Avoid returning -ETIMEDOUT.
1739
1740 2004-06-01  Ulrich Drepper  <drepper@redhat.com>
1741
1742         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S
1743         (__condvar_tw_cleanup): Fix access to saved broadcast_seq value.
1744         Reported by Kaz Kojima.
1745
1746 2004-05-25  Jakub Jelinek  <jakub@redhat.com>
1747
1748         * sysdeps/unix/sysv/linux/aio_misc.h: New file.
1749
1750 2004-05-21  Jakub Jelinek  <jakub@redhat.com>
1751
1752         * sysdeps/pthread/pthread_cond_wait.c (__pthread_cond_wait): Compare
1753         __broadcast_seq with bc_seq after acquiring internal lock instead of
1754         before it.
1755
1756 2004-05-18  Jakub Jelinek  <jakub@redhat.com>
1757
1758         * Makefile (.NOTPARALLEL): Only serialize make check/xcheck, not
1759         compilation.
1760         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S
1761         (__pthread_cond_timedwait): Avoid returning -ETIMEDOUT.
1762         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h
1763         (pthread_cond_t): Add __data.__broadcast_seq field.
1764         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S
1765         (FRAME_SIZE): Define.
1766         (__pthread_cond_timedwait): Use it.  Store/check broadcast_seq.
1767         Comment typo fixes.
1768         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S (FRAME_SIZE):
1769         Define.
1770         (__pthread_cond_wait): Use it.  Store/check broadcast_seq.  Comment
1771         typo fixes.
1772         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S
1773         (__pthread_cond_broadcast): Increment broadcast_seq.  Comment typo
1774         fixes.
1775
1776 2004-05-18  Ulrich Drepper  <drepper@redhat.com>
1777
1778         * sysdeps/unix/sysv/linux/lowlevelcond.sym: Add broadcast_seq entry.
1779         * sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h (pthread_cond_t):
1780         Add __broadcast_seq field.
1781         * sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Likewise.
1782         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Likewise.
1783         * sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h: Likewise.
1784         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h: Likewise.
1785         * sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h: Likewise.
1786         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S: Mark
1787         all waiters as woken with woken_seq and bump broadcast counter.
1788         * sysdeps/pthread/pthread_cond_broadcast.c: Likewise.
1789         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Use new
1790         __broadcast_seq field.
1791         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Likewise.
1792         * sysdeps/pthread/pthread_cond_wait.c: Likewise.
1793         * sysdeps/pthread/pthread_cond_timedwait.c: Likewise.
1794         * pthread_cond_init.c: Initialize __broadcast_seq field.
1795         * Makefile (tests): Add tst-cond17 and tst-cond18.
1796         Add .NOTPARALLEL goal.
1797         * tst-cond16.c: New file.  From Jakub.
1798         * tst-cond17.c: New file.  From Jakub.
1799         * tst-cond18.c: New file.  From Jakub.
1800
1801 2004-05-16  Ulrich Drepper  <drepper@redhat.com>
1802
1803         * sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: Correct some
1804         unwind info.
1805
1806         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S:
1807         Parametrize frame size.  Correct some unwind info.
1808         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Likewise.
1809
1810 2004-05-04  Jakub Jelinek  <jakub@redhat.com>
1811
1812         * tst-stack3.c: Note testing functionality beyond POSIX.
1813
1814 2004-05-04  Jakub Jelinek  <jakub@redhat.com>
1815
1816         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h (USE___THREAD):
1817         Change conditional from ifdef to if.
1818
1819 2004-04-23  Jakub Jelinek  <jakub@redhat.com>
1820
1821         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h (SYSDEP_CANCEL_ERRNO,
1822         SYSDEP_CANCEL_ERROR): Define.
1823         (PSEUDO): Use it.
1824
1825 2004-05-01  Jakub Jelinek  <jakub@redhat.com>
1826
1827         * Versions (libpthread): Remove __pthread_cleanup_upto@@GLIBC_PRIVATE.
1828
1829 2004-04-20  Jakub Jelinek  <jakub@redhat.com>
1830
1831         * sem_unlink.c (sem_unlink): Change EPERM into EACCES.
1832
1833 2004-04-19  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
1834
1835         * sysdeps/unix/sysv/linux/sh/sem_timedwait.S: Add frame info.
1836         Use HIDDEN_JUMPTARGET to jump to __pthread_unwind.
1837         * sysdeps/unix/sysv/linux/sh/sem_wait.S: Remove unneeded frame
1838         info.  Use HIDDEN_JUMPTARGET to jump to __pthread_unwind.
1839
1840 2004-04-19  Ulrich Drepper  <drepper@redhat.com>
1841
1842         * sysdeps/unix/sysv/linux/timer_routines.c: Make sure helper
1843         thread has all signals blocked.
1844
1845 2004-04-18  Andreas Jaeger  <aj@suse.de>
1846
1847         * sysdeps/unix/sysv/linux/x86_64/bits/semaphore.h
1848         (SEM_VALUE_MAX): Add missing brace.
1849
1850 2004-04-17  Jakub Jelinek  <jakub@redhat.com>
1851
1852         * sysdeps/pthread/Makefile (tests): Add tst-mqueue8x
1853         in rt subdir.
1854         (CFLAGS-tst-mqueue8x.c): Add -fexceptions.
1855         * sysdeps/pthread/tst-mqueue8x.c: New test.
1856         * tst-cancel4.c: Update comment about message queues.
1857
1858         * sysdeps/pthread/timer_gettime.c (timer_gettime): For expired timer
1859         return it_value { 0, 0 }.
1860         * sysdeps/pthread/timer_create.c (timer_create): Handle SIGEV_NONE
1861         like SIGEV_SIGNAL.
1862         * sysdeps/pthread/timer_routines.c (thread_expire_timer): Remove
1863         assertion for SIGEV_NONE.
1864         (thread_attr_compare): Compare all attributes, not just a partial
1865         subset.
1866
1867 2004-04-17  Jakub Jelinek  <jakub@redhat.com>
1868
1869         * sysdeps/unix/sysv/linux/mq_notify.c: Include stdlib.h.
1870
1871 2004-04-17  Ulrich Drepper  <drepper@redhat.com>
1872
1873         * sysdeps/unix/sysv/linux/alpha/bits/semaphore.h (SEM_VALUE_MAX):
1874         Just use a plain number.
1875         * sysdeps/unix/sysv/linux/i386/bits/semaphore.h: Likewise.
1876         * sysdeps/unix/sysv/linux/ia64/bits/semaphore.h: Likewise.
1877         * sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h: Likewise.
1878         * sysdeps/unix/sysv/linux/s390/bits/semaphore.h: Likewise.
1879         * sysdeps/unix/sysv/linux/sh/bits/semaphore.h: Likewise.
1880         * sysdeps/unix/sysv/linux/sparc/bits/semaphore.h: Likewise.
1881         * sysdeps/unix/sysv/linux/x86_64/bits/semaphore.h: Likewise.
1882
1883 2004-04-16  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
1884
1885         * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Remove unneeded
1886         frame info.
1887         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Likewise.
1888
1889 2004-04-15  Jakub Jelinek  <jakub@redhat.com>
1890
1891         * sysdeps/unix/sysv/linux/timer_routines.c: Include errno.h.
1892         (timer_helper_thread): Use inline rt_sigtimedwait syscall instead
1893         of calling sigwaitinfo.
1894
1895 2004-04-16  Ulrich Drepper  <drepper@redhat.com>
1896
1897         * allocatestack.c (allocate_stack): Set reported_guardsize
1898         unconditionally.
1899         * pthread_getattr_np.c (pthread_getattr_np): Use
1900         reported_guardsize instead of guardsize.
1901         * descr.h (struct pthread): Add reported_guardsize field.
1902
1903 2004-04-13  Jakub Jelinek  <jakub@redhat.com>
1904
1905         * sysdeps/unix/sysv/linux/mq_notify.c: Shut up GCC warning.
1906
1907 2004-04-12  Ulrich Drepper  <drepper@redhat.com>
1908
1909         * sysdeps/unix/sysv/linux/mq-notify.c: New file.
1910
1911 2004-04-08  Jakub Jelinek  <jakub@redhat.com>
1912
1913         * sysdeps/unix/sysv/linux/bits/local_lim.h (MQ_PRIO_MAX): Define.
1914         * sysdeps/unix/sysv/linux/alpha/bits/local_lim.h (MQ_PRIO_MAX): Define.
1915         * sysdeps/unix/sysv/linux/ia64/bits/local_lim.h (MQ_PRIO_MAX): Define.
1916         * sysdeps/unix/sysv/linux/sparc/bits/local_lim.h (MQ_PRIO_MAX): Define.
1917         * sysdeps/unix/sysv/linux/bits/posix_opt.h (_POSIX_MESSAGE_PASSING):
1918         Define.
1919         * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h
1920         (_POSIX_MESSAGE_PASSING): Define.
1921         * sysdeps/unix/sysv/linux/ia64/bits/posix_opt.h
1922         (_POSIX_MESSAGE_PASSING): Define.
1923         * sysdeps/unix/sysv/linux/x86_64/bits/posix_opt.h
1924         (_POSIX_MESSAGE_PASSING): Define.
1925
1926 2004-04-04  Ulrich Drepper  <drepper@redhat.com>
1927
1928         * tst-context1.c (fct): Check whether correct stack is used.
1929
1930 2004-04-03  Ulrich Drepper  <drepper@redhat.com>
1931
1932         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Never use
1933         matching constraints for asm mem parameters.
1934
1935         * tst-clock2.c (tf): Don't define unless needed.
1936
1937 2004-03-30  H.J. Lu  <hongjiu.lu@intel.com>
1938
1939         * Makefile (link-libc-static): Use $(static-gnulib) instead of
1940         $(gnulib).
1941
1942 2004-03-30  Ulrich Drepper  <drepper@redhat.com>
1943
1944         * sysdeps/pthread/pthread-functions.h: Add ptr__nptl_deallocate_tsd.
1945         * init.c (pthread_functions): Add ptr__nptl_deallocate_tsd.
1946         * pthreadP.h: Declare __nptl_deallocate_tsd.
1947         * pthread_create.c (deallocate_tsd): Remove to __nptl_deallocate_tsd.
1948         Adjust caller.
1949
1950         * Makefile (tests): Add tst-tsd5.
1951         * tst-tsd5.c: New file.
1952
1953 2004-03-29  Ulrich Drepper  <drepper@redhat.com>
1954
1955         * sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c
1956         (__pthread_attr_setaffinity_old): Prepend GLIBC_ to version names
1957         is SHLIB_COMPAT check.
1958         * sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c
1959         (__pthread_attr_getaffinity_old): Likewise.
1960         * sysdeps/unix/sysv/linux/pthread_getaffinity.c
1961         (__pthread_getaffinity_old): Likewise.
1962         * sysdeps/unix/sysv/linux/pthread_setaffinity.c
1963         (__pthread_setaffinity_old): Likewise.
1964
1965 2004-03-26  Ulrich Drepper  <drepper@redhat.com>
1966
1967         * allocatestack.c (_make_stacks_executable): Call
1968         _dl_make_stack_executable first.
1969
1970 2004-03-24  Roland McGrath  <roland@redhat.com>
1971
1972         * sysdeps/i386/pthread_spin_lock.c (pthread_spin_lock): Use "m"
1973         constraint instead of "0".
1974
1975 2004-03-24  Ulrich Drepper  <drepper@redhat.com>
1976
1977         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h
1978         (lll_mutex_cond_trylock): Define as wrapper around __lll_cond_trylock.
1979
1980         * sysdeps/unix/sysv/linux/getpid.c (really_getpid): Reorganize
1981         code to avoid warning.
1982
1983 2004-03-24  Andreas Jaeger  <aj@suse.de>
1984
1985         * sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c
1986         (__pthread_attr_setaffinity_old): Remove const.
1987
1988 2004-03-23  Ulrich Drepper  <drepper@redhat.com>
1989
1990         * sysdeps/unix/sysv/linux/smp.h: New file.
1991         * sysdeps/unix/sysv/linux/sh/smp.h: New file.
1992         * init.c: Define __is_smp.
1993         (__pthread_initialize_minimal_internal): Call is_smp_system to
1994         initialize __is_smp.
1995         * pthreadP.h: Declare __is_smp.
1996         Define MAX_ADAPTIVE_COUNT is necessary.
1997         * pthread_mutex_init.c: Add comment regarding __spins field.
1998         * pthread_mutex_lock.c: Implement adaptive mutex type.
1999         * pthread_mutex_timedlock.c: Likewise.
2000         * sysdeps/unix/sysv/linux/pthread_mutex_cond_lock.c: Likewise.
2001         * sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h (pthread_mutex_t):
2002         Add __spins field.
2003         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h: Likewise.
2004         * sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h: Likewise.
2005         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Likewise.
2006         * sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h: Likewise.
2007         * sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Likewise.
2008         * sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h: Likewise.
2009         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: Likewise.
2010         * sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h: Define
2011         lll_mutex_cond_trylock.
2012         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Likewise.
2013         * sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h: Likewise.
2014         * sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Likewise.
2015         * sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h: Likewise.
2016         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h: Likewise.
2017         Define BUSY_WAIT_NOP.
2018         * sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h: Likewise.
2019         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: Likewise.
2020
2021         * tst-mutex5.c: Add support for testing adaptive mutexes.
2022         * tst-mutex7.c: Likewise.
2023         * tst-mutex5a.c: New file.
2024         * tst-mutex7a.c: New file.
2025         * Makefile (tests): Add tst-mutex5a and tst-mutex7a.
2026
2027         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S
2028         (__lll_mutex_timedlock_wait): Preserve r8 and r9 since the
2029         vgettimeofday call might destroy the content.
2030
2031         * sysdeps/ia64/pthread_spin_lock.c (pthread_spin_lock): Use hint
2032         @pause in the loop.
2033
2034         * sysdeps/unix/sysv/linux/i386/lowlevellock.h (lll_mutex_trylock):
2035         No need to restrict type of ret.  Make it int.  Add comment.
2036
2037         * sysdeps/unix/sysv/linux/i386/lowlevellock.h (lll_mutex_trylock):
2038         Remove unnecessary setne instruction.
2039
2040 2004-03-22  Jakub Jelinek  <jakub@redhat.com>
2041
2042         * sysdeps/unix/sysv/linux/pthread_getaffinity.c
2043         (__pthread_getaffinity_new): Use INT_MAX instead of UINT_MAX.
2044         * pthread_getattr_np.c (pthread_getattr_np): Double size every cycle.
2045         If realloc fails, break out of the loop.
2046
2047 2004-03-20  Andreas Jaeger  <aj@suse.de>
2048
2049         * sysdeps/unix/sysv/linux/pthread_setaffinity.c
2050         (__pthread_setaffinity_old): Fix interface.
2051         * sysdeps/unix/sysv/linux/pthread_getaffinity.c
2052         (__pthread_getaffinity_old): Likewise.
2053
2054         * sysdeps/unix/sysv/linux/pthread_setaffinity.c
2055         (__pthread_setaffinity_new): Remove duplicate declaration.
2056
2057 2004-03-20  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
2058
2059         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h (CENABLE): Save
2060         the return value to a safe register.
2061         (CDISABLE): Set the function argument correctly.
2062
2063 2004-03-17  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
2064
2065         * sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h (XCHG): Define.
2066         * sysdeps/unix/sysv/linux/sh/lowlevellock.S (__lll_mutex_lock_wait):
2067         Rewrite so that only one locked memory operation per round is needed.
2068         * sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S
2069         (pthread_barrier_wait): After wakeup, release lock only when the
2070         last thread stopped using the barrier object.
2071         * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S
2072         (__pthread_cond_wait): Don't store mutex address if the current
2073         value is ~0l.  Add correct cleanup support and unwind info.
2074         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Likewise.
2075         * sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S
2076         (__pthread_cond_broadcast): Don't use requeue for pshared condvars.
2077         * sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: Update comment.
2078         * sysdeps/unix/sysv/linux/sh/pthread_once.S (__pthread_once):
2079         Add correct cleanup support and unwind info.
2080         * sysdeps/unix/sysv/linux/sh/sem_wait.S (__new_sem_wait): Likewise.
2081         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Add unwind
2082         information for syscall wrappers.
2083
2084 2004-03-18  Ulrich Drepper  <drepper@redhat.com>
2085
2086         * sysdeps/unix/sysv/linux/internaltypes.h (struct pthread_attr): Add
2087         cpusetsize field, remove next.
2088         * sysdeps/pthread/pthread.h (pthread_getaffinity_np): Add new second
2089         parameter for size of the CPU set.
2090         (pthread_setaffinity_np): Likewise.
2091         (pthread_attr_getaffinity_np): Likewise.
2092         (pthread_attr_setaffinity_np): Likewise.
2093         * sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c: Implement
2094         interface change, keep compatibility code.
2095         * sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c: Likewise.
2096         * sysdeps/unix/sysv/linux/pthread_getaffinity.c: Likewise.
2097         * sysdeps/unix/sysv/linux/pthread_setaffinity.c: Likewise.
2098         * pthreadP.h: Remove hidden_proto for pthread_getaffinity_np.  Declare
2099         __pthread_getaffinity_np.
2100         * Versions: Add version for changed interfaces.
2101         * tst-attr3.c: Adjust test for interface change.
2102         * pthread_getattr_np.c: Query the kernel about the affinity mask with
2103         increasing buffer sizes.
2104         * pthread_attr_destroy.c: Remove unused list handling.
2105         * pthread_attr_init.c: Likewise.
2106
2107 2004-03-17  Roland McGrath  <roland@redhat.com>
2108
2109         * sysdeps/unix/sysv/linux/timer_create.c (timer_create): Pass missing
2110         first argument to clock_getres so we ever enable kernel timers.
2111
2112 2004-03-15  Ulrich Weigand  <uweigand@de.ibm.com>
2113
2114         * init.c (nptl_version): Add __attribute_used__ to nptl_version.
2115
2116 2004-03-12  Richard Henderson  <rth@redhat.com>
2117
2118         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Propagate
2119         oldvalue from CENABLE to CDISABLE.
2120
2121 2004-03-12  Ulrich Drepper  <drepper@redhat.com>
2122
2123         * sysdeps/unix/sysv/linux/bits/local_lim.h: Define HOST_NAME_MAX.
2124         * sysdeps/unix/sysv/linux/alpha/bits/local_lim.h: Likewise.
2125         * sysdeps/unix/sysv/linux/ia64/bits/local_lim.h: Likewise.
2126         * sysdeps/unix/sysv/linux/sparc/bits/local_lim.h: Likewise.
2127
2128 2004-03-11  Richard Henderson  <rth@redhat.com>
2129
2130         * sysdeps/alpha/tcb-offsets.sym (PID_OFFSET): New.
2131         * sysdeps/unix/sysv/linux/alpha/pt-vfork.S: Save/restore PID.
2132         * sysdeps/unix/sysv/linux/alpha/vfork.S: New file.
2133
2134 2004-03-11  Jakub Jelinek  <jakub@redhat.com>
2135
2136         * sysdeps/unix/sysv/linux/s390/s390-64/vfork.S (__vfork): Use jgnl
2137         instead of jnl instruction to jump to SYSCALL_ERROR_LABEL.
2138         * sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S (__vfork): Likewise.
2139
2140 2004-03-11  Jakub Jelinek  <jakub@redhat.com>
2141
2142         * forward.c (__pthread_cond_broadcast_2_0,
2143         __pthread_cond_destroy_2_0, __pthread_cond_init_2_0,
2144         __pthread_cond_signal_2_0, __pthread_cond_wait_2_0,
2145         __pthread_cond_timedwait_2_0): Use return 0 as defaction instead of 0.
2146
2147 2004-03-11  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
2148
2149         * sysdeps/sh/tcb-offsets.sym: Add PID.
2150         * sysdeps/unix/sysv/linux/sh/pt-vfork.S: Properly handle PID cache.
2151         * sysdeps/unix/sysv/linux/sh/vfork.S: New file.
2152
2153 2004-03-10  Ulrich Drepper  <drepper@redhat.com>
2154
2155         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: No need to
2156         include <sysdep-cancel.h>, vfork is no cancellation point.
2157         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: Likewise.
2158         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pt-vfork.S: Likewise.
2159         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pt-vfork.S: Likewise.
2160
2161 2004-03-10  Jakub Jelinek  <jakub@redhat.com>
2162
2163         * sysdeps/unix/sysv/linux/s390/s390-32/vfork.S (__vfork): Add
2164         libc_hidden_def.
2165         * sysdeps/unix/sysv/linux/s390/s390-64/vfork.S (__vfork): Likewise.
2166         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S (__vfork):
2167         Likewise.
2168         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S (__vfork):
2169         Likewise.
2170         * sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S (__vfork): Likewise.
2171         * sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S (__vfork): Likewise.
2172         * sysdeps/unix/sysv/linux/ia64/pt-vfork.S: Include tcb-offsets.h.
2173         * sysdeps/unix/sysv/linux/ia64/vfork.S (__vfork): Use DO_CALL instead
2174         of DO_CALL_VIA_BREAK.  Work around a gas problem.
2175
2176         * sysdeps/unix/sysv/linux/powerpc/pt-vfork.S: Remove.
2177         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: New file.
2178         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pt-vfork.S: New file.
2179         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: New file.
2180         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pt-vfork.S: New file.
2181         * sysdeps/powerpc/tcb-offsets.sym: Add PID.
2182
2183         * sysdeps/unix/sysv/linux/ia64/pt-vfork.S (__vfork): Don't use
2184         a local register for saving old PID.  Negate PID in parent upon exit.
2185
2186         * sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S: Include
2187         tcb-offsets.h.
2188         (__vfork): Negate PID if non-zero and set to INT_MIN if zero
2189         before syscall, set to the old value in the parent afterwards.
2190         * sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: New file.
2191         * sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S: Include
2192         tcb-offsets.h.
2193         (__vfork): Negate PID if non-zero and set to INT_MIN if zero
2194         before syscall, set to the old value in the parent afterwards.
2195         * sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: New file.
2196         * sysdeps/s390/tcb-offsets.sym: Add PID.
2197
2198         * sysdeps/unix/sysv/linux/sparc/pt-vfork.S: Remove.
2199         * sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S: New file.
2200         * sysdeps/unix/sysv/linux/sparc/sparc32/pt-vfork.S: New file.
2201         * sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S: New file.
2202         * sysdeps/unix/sysv/linux/sparc/sparc64/pt-vfork.S: New file.
2203         * sysdeps/sparc/tcb-offsets.sym: Add PID.
2204
2205 2004-03-10  Andreas Schwab  <schwab@suse.de>
2206
2207         * sysdeps/ia64/tcb-offsets.sym: Add PID.
2208         * sysdeps/unix/sysv/linux/ia64/vfork.S: New file.
2209         * sysdeps/unix/sysv/linux/ia64/pt-vfork.S: Properly handle PID cache.
2210
2211 2004-03-09  Jakub Jelinek  <jakub@redhat.com>
2212
2213         * tst-cancel20.c (do_one_test): Clear in_sh_body first.
2214         * tst-cancel21.c (do_one_test): Likewise.
2215         Reported by Gordon Jin <gordon.jin@intel.com>.
2216
2217 2004-02-09  Jakub Jelinek  <jakub@redhat.com>
2218
2219         * sysdeps/unix/sysv/linux/i386/vfork.S (SAVE_PID): Negate PID
2220         if non-zero and set to INT_MIN if zero.
2221         * sysdeps/unix/sysv/linux/x86_64/vfork.S (SAVE_PID): Likewise.
2222         * sysdeps/unix/sysv/linux/i386/pt-vfork.S: Include tcb-offsets.h.
2223         (SAVE_PID, RESTORE_PID): Define.
2224         (__vfork): Use it.
2225         * sysdeps/unix/sysv/linux/x86_64/pt-vfork.S: Include tcb-offsets.h.
2226         Use relative path to avoid including NPTL i386/vfork.S.
2227         (SAVE_PID, RESTORE_PID): Define.
2228         * sysdeps/unix/sysv/linux/raise.c: Include limits.h.
2229         (raise): Handle THREAD_SELF->pid INT_MIN the same as 0.
2230         * Makefile (tests): Add tst-vfork1, tst-vfork2, tst-vfork1x and
2231         tst-vfork2x.
2232         (tests-reverse): Add tst-vfork1x and tst-vfork2x.
2233         * tst-vfork1.c: New test.
2234         * tst-vfork2.c: New test.
2235         * tst-vfork1x.c: New test.
2236         * tst-vfork2x.c: New test.
2237
2238 2004-03-08  Ulrich Drepper  <drepper@redhat.com>
2239
2240         * sysdeps/i386/tcb-offsets.sym: Add PID.
2241         * sysdeps/x86_64/tcb-offsets.sym: Likewise.
2242         * sysdeps/unix/sysv/linux/i386/vfork.S: New file.
2243         * sysdeps/unix/sysv/linux/x86_64/vfork.S: New file.
2244
2245 2004-03-08  Steven Munroe  <sjmunroe@us.ibm.com>
2246
2247         * sysdeps/unix/sysv/linux/powerpc/Versions: Remove leading tabs.
2248
2249 2004-03-08  H.J. Lu  <hongjiu.lu@intel.com>
2250
2251         * sysdeps/s390/tls.h (INIT_SYSINFO): _dl_sysinfo is now in
2252         _rtld_global_ro.
2253
2254 2004-03-07  Ulrich Drepper  <drepper@redhat.com>
2255
2256         * sysdeps/ia64/tls.h (INIT_SYSINFO): _dl_sysinfo is now in
2257         _rtld_global_ro.
2258
2259         * tst-once4.c: Remove unnecessary macro definition.
2260
2261         * tst-mutex7.c (do_test): Limit thread stack size.
2262         * tst-once2.c (do_test): Likewise.
2263         * tst-tls3.c (do_test): Likewise.
2264         * tst-tls1.c (do_test): Likewise.
2265         * tst-signal3.c (do_test): Likewise.
2266         * tst-kill6.c (do_test): Likewise.
2267         * tst-key4.c (do_test): Likewise.
2268         * tst-join4.c (do_test): Likewise.
2269         * tst-fork1.c (do_test): Likewise.
2270         * tst-context1.c (do_test): Likewise.
2271         * tst-cond2.c (do_test): Likewise.
2272         * tst-cond10.c (do_test): Likewise.
2273         * tst-clock2.c (do_test): Likewise.
2274         * tst-cancel10.c (do_test): Likewise.
2275         * tst-basic2.c (do_test): Likewise.
2276         * tst-barrier4.c (do_test): Likewise.
2277
2278 2004-03-05  Ulrich Drepper  <drepper@redhat.com>
2279
2280         * sysdeps/i386/tls.h: Use GLRO instead of GL where appropriate.
2281
2282 2004-03-01  Ulrich Drepper  <drepper@redhat.com>
2283
2284         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S
2285         (__pthread_cond_timedwait): Optimize wakeup test.
2286         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S
2287         (__pthread_cond_wait): Likewise.
2288         * sysdeps/pthread/pthread_cond_wait.c (__pthread_cond_wait): Likewise.
2289         * sysdeps/pthread/pthread_cond_timedwait.c (__pthread_cond_timedwait):
2290         Likewise.
2291
2292 2004-02-29  Ulrich Drepper  <drepper@redhat.com>
2293
2294         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S
2295         (__lll_mutex_lock_wait): Optimize a bit more.  Just one copy of
2296         the atomic instruction needed.
2297         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S
2298         (__lll_mutex_lock_wait): Likewise.
2299
2300 2004-02-28  Ulrich Drepper  <drepper@redhat.com>
2301
2302         * Makefile (tests): Add tst-cond14 and tst-cond15.
2303         * tst-cond14.c: New file.
2304         * tst-cond15.c: New file.
2305
2306 2004-02-27  Ulrich Drepper  <drepper@redhat.com>
2307
2308         * sysdeps/pthread/createthread.c (create_thread): Remove use of
2309         CLONE_STOPPED.  We cannot use SIGCONT which means CLONE_STOPPED
2310         needs to be implemented differently to be useful.
2311
2312 2004-02-26  Ulrich Drepper  <drepper@redhat.com>
2313
2314         * pthread_attr_setschedparam.c: Don't test priority against limits
2315         here.  Set ATTR_FLAG_SCHED_SET flag.
2316         * pthread_attr_setschedpolicy.c: Set ATTR_FLAG_POLICY_SET flag.
2317         * pthread_create.c (__pthread_create_2_1): Copy scheduling attributes
2318         from parent thread to child.  If attribute is used and scheduling
2319         parameters are not inherited, copy parameters from attribute or
2320         compute them.  Check priority value.
2321         * pthread_getschedparam.c: If the parameters aren't known yet get
2322         them from the kernel.
2323         * pthread_setschedparam.c: Set ATTR_FLAG_SCHED_SET and
2324         ATTR_FLAG_POLICY_SET flag for thread.
2325         * sysdeps/unix/sysv/linux/internaltypes.h: Define ATTR_FLAG_SCHED_SET
2326         and ATTR_FLAG_POLICY_SET.
2327
2328         * sysdeps/pthread/createthread.c: Use tgkill if possible.
2329
2330         * pthread_attr_getstackaddr.c (__pthread_attr_getstackaddr): Don't
2331         fail if stack address hasn't been set.  Just return 0.
2332
2333 2004-02-25  Ulrich Drepper  <drepper@redhat.com>
2334
2335         * Makefile (tests-nolibpthread): Add tst-unload.  Don't link with
2336         libpthread for the files in this list.
2337         (CFLAGS-tst-unload): Removed.
2338         * tst-unload.c (do_test): Don't use complete path for
2339         LIBPHREAD_SO.
2340
2341         * Makefile: Define sonames for tst-tls5mod, tst-_res1mod1, and
2342         tst-_res1mod2.
2343
2344 2004-02-22  Ulrich Drepper  <drepper@redhat.com>
2345
2346         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S
2347         (__lll_mutex_lock_wait): Rewrite so that only one locked memory
2348         operation per round is needed.
2349         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S
2350         (__lll_mutex_lock_wait): Likewise.
2351
2352 2004-02-20  Ulrich Drepper  <drepper@redhat.com>
2353
2354         * tst-cancel9.c (cleanup): Don't print to stderr.
2355
2356 2004-02-20  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
2357
2358         * sysdeps/sh/jmpbuf-unwind.h (_JMPBUF_UNWINDS_ADJ): Fix variable name.
2359
2360 2004-02-20  Jakub Jelinek  <jakub@redhat.com>
2361
2362         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h
2363         (__syscall_error_handler2): Call CDISABLE.
2364         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h
2365         (__syscall_error_handler2): Call CDISABLE.
2366
2367         * sysdeps/pthread/pthread_barrier_wait.c (pthread_barrier_wait):
2368         Release lock before the loop, don't reacquire it.
2369
2370         * sysdeps/unix/sysv/linux/ia64/dl-sysdep.h (DL_ARGV_NOT_RELRO): Define.
2371
2372 2004-02-19  Andreas Schwab  <schwab@suse.de>
2373
2374         * sysdeps/pthread/pthread_barrier_wait.c (pthread_barrier_wait):
2375         Fix last change.
2376
2377 2004-02-18  Ulrich Drepper  <drepper@redhat.com>
2378
2379         * sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S
2380         (pthread_barrier_wait): After wakeup, release lock only when the
2381         last thread stopped using the barrier object.
2382         * sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S
2383         (pthread_barrier_wait): Likewise.
2384         * sysdeps/pthread/pthread_barrier_wait.c (pthread_barrier_wait):
2385         Likewise.
2386         * Makefile (tests): Add tst-barrier4.
2387         * tst-barrier4.c: New file.
2388
2389         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S
2390         (__pthread_cond_timedwait): Perform timeout test while holding
2391         internal lock to prevent wakeup race.
2392         Patch by Dinakar Guniguntala <dgunigun@in.ibm.com>.
2393         * sysdeps/pthread/pthread_cond_timedwait.c
2394         (__pthread_cond_timedwait): Likewise.
2395         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S
2396         (__pthread_cond_timedwait): Likewise.
2397
2398 2004-02-18  Jakub Jelinek  <jakub@redhat.com>
2399
2400         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S
2401         (__pthread_rwlock_unlock): Access WRITER as 32-bit value.
2402         * Makefile (tests): Add tst-rwlock13.
2403         * tst-rwlock13.c: New test.
2404
2405 2004-02-16  Ulrich Drepper  <drepper@redhat.com>
2406
2407         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S
2408         (__condvar_tw_cleanup): Little optimization.
2409         Patch by Dinakar Guniguntala <dgunigun@in.ibm.com>.
2410
2411 2004-02-16  Steven Munroe  <sjmunroe@us.ibm.com>
2412
2413         * sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: Replace libc with
2414         libpthread as "lib" parameter to SHLIB_COMPAT.
2415         (__novmx_siglongjmp): Fix typo in function name.
2416         (__novmx_longjmp): Fix typo in function name.
2417
2418 2004-02-13  Ulrich Drepper  <drepper@redhat.com>
2419
2420         * sysdeps/pthread/pthread_cond_wait.c (__pthread_cond_wait): Add a
2421         __builtin_expect.
2422
2423         * sysdeps/generic/pt-longjmp.c: Moved to...
2424         * sysdeps/pthread/pt-longjmp.c: ...here.  New file.
2425
2426 2004-01-29  Steven Munroe  <sjmunroe@us.ibm.com>
2427
2428         * Makefile (libpthread-routines): Add pt-cleanup.
2429         * pt-longjmp.c: Removed.
2430         * pt-cleanup.c: Copied __pthread_cleanup_upto to here. New file.
2431         * sysdeps/generic/pt-longjmp.c: Copied longjmp to here. New file.
2432         * sysdeps/unix/sysv/linux/powerpc/Versions: New file.
2433         Version longjmp, siglongjmp for GLIBC_2.3.4.
2434         * sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: New File.
2435
2436 2004-02-13  Ulrich Drepper  <drepper@redhat.com>
2437
2438         * sysdeps/pthread/pthread_cond_timedwait.c
2439         (__pthread_cond_timedwait): Optimize.  Drop internal lock earlier.
2440         Reuse code.  Add __builtin_expects.
2441
2442         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S
2443         (__pthread_cond_timedwait): Get internal lock in case timeout has
2444         passed before the futex syscall.
2445         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: Likewise.
2446
2447 2004-01-20  Ulrich Drepper  <drepper@redhat.com>
2448
2449         * allocatestack.c: Pretty printing.
2450
2451         * sysdeps/pthread/createthread.c (create_thread): Don't add
2452         CLONE_DETACHED bit if it is not necessary.
2453
2454 2004-01-16  Ulrich Drepper  <drepper@redhat.com>
2455
2456         * pthread_getattr_np.c: Include ldsodefs.h.
2457
2458 2004-01-16  Richard Henderson  <rth@redhat.com>
2459
2460         * allocatestack.c: Don't declare __libc_stack_end.
2461         * init.c (__pthread_initialize_minimal_internal): Likewise.
2462         * pthread_getattr_np.c (pthread_getattr_np): Likewise.
2463
2464 2004-01-15  Richard Henderson  <rth@redhat.com>
2465
2466         * sysdeps/alpha/tls.h (tcbhead_t): Add private.
2467         (TLS_INIT_TCB_SIZE, TLS_INIT_TCB_ALIGN, TLS_TCB_SIZE,
2468         TLS_PRE_TCB_SIZE, TLS_TCB_ALIGN, INSTALL_DTV, INSTALL_NEW_DTV,
2469         GET_DTV, THREAD_DTV, THREAD_SELF, DB_THREAD_SELF): Match ia64.
2470         (TLS_TCB_OFFSET, THREAD_ID, NO_TLS_OFFSET): Remove.
2471         (THREAD_GETMEM, THREAD_GETMEM_NC): Simplify.
2472         (THREAD_SETMEM, THREAD_SETMEM_NC): Likewise.
2473         * sysdeps/unix/sysv/linux/alpha/createthread.c (TLS_VALUE): Match ia64.
2474
2475 2004-01-14  Ulrich Drepper  <drepper@redhat.com>
2476
2477         * init.c (pthread_functions): Make array const.
2478
2479 2004-01-13  Ulrich Drepper  <drepper@redhat.com>
2480
2481         * allocatestack.c (__make_stacks_executable): Change interface.
2482         Check parameters.  Pass parameter on to libc counterpart.
2483         * pthreadP.h: Change declaration.
2484
2485 2004-01-13  Richard Henderson  <rth@redhat.com>
2486
2487         * pthread_attr_setstack.c (__old_pthread_attr_setstack): Use
2488         prototype form.
2489         * pthread_attr_setstacksize.c (__old_pthread_attr_setstacksize):
2490         Likewise.
2491
2492         * sysdeps/alpha/Makefile: New file.
2493         * sysdeps/alpha/tcb-offsets.sym: New file.
2494         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h (SINGLE_THREAD_P):
2495         Use MULTIPLE_THREADS_OFFSET to implement !libpthread !libc version.
2496
2497         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Rewrite based
2498         on powerpc version.
2499
2500 2004-01-08  Jakub Jelinek  <jakub@redhat.com>
2501
2502         * Makefile (tests): Add tst-backtrace1.
2503         * tst-backtrace1.c: New test.
2504
2505 2003-12-11  Ulrich Weigand  <uweigand@de.ibm.com>
2506
2507         * sysdeps/alpha/tls.h (DB_THREAD_SELF): Pass bit size of thread
2508         register as second parameter to the REGISTER macro.
2509         * sysdeps/ia64/tls.h (DB_THREAD_SELF): Likewise.
2510         * sysdeps/powerpc/tls.h (DB_THREAD_SELF): Likewise.
2511         * sysdeps/sh/tls.h (DB_THREAD_SELF): Likewise.
2512         * sysdeps/sparc/tls.h (DB_THREAD_SELF): Likewise.
2513         * sysdeps/s390/tls.h (DB_THREAD_SELF): Pass __WORDSIZE as bit size
2514         of thread register as second parameter to REGISTER macro in 64 case.
2515
2516 2004-01-03  Ulrich Drepper  <drepper@redhat.com>
2517
2518         * sysdeps/unix/sysv/linux/Makefile (CFLAGS-getpid.c): Removed.
2519         (CFLAGS-getpid.o): Defined.
2520         (CFLAGS-getpid.os): Defined.
2521
2522 2003-12-31  Ulrich Drepper  <drepper@redhat.com>
2523
2524         * pthread_getattr_np.c (pthread_getattr_np): Make sure stack info
2525         returned for main thread does not overlap with any other VMA.
2526         Patch by Jakub Jelinek.
2527
2528 2003-12-29  Jakub Jelinek  <jakub@redhat.com>
2529
2530         * tst-raise1.c: Include stdio.h.
2531
2532 2003-12-23  Jakub Jelinek  <jakub@redhat.com>
2533
2534         * sysdeps/unix/sysv/linux/raise.c (raise): Protect pid = selftid
2535         setting with __ASSUME_TGKILL || defined __NR_tgkill.
2536         If pid is 0, set it to selftid.
2537         * sysdeps/unix/sysv/linux/getpid.c (really_getpid): Make inline.
2538         Don't set self->pid but self->tid.  If self->pid == 0 and self->tid
2539         != 0, return self->tid without doing a syscall.
2540         * descr.h (struct pthread): Move pid field after tid.
2541
2542         * Makefile (tests): Add tst-raise1.
2543         * tst-raise1.c: New file.
2544
2545 2003-12-23  Roland McGrath  <roland@redhat.com>
2546
2547         * tst-oddstacklimit.c: New file.
2548         * Makefile (tests): Add it.
2549         (tst-oddstacklimit-ENV): New variable.
2550
2551         * init.c (__pthread_initialize_minimal_internal): Round stack rlimit
2552         value up to page size for __default_stacksize.
2553
2554 2003-12-21  Ulrich Drepper  <drepper@redhat.com>
2555
2556         * Makefile (tests): Add tst-eintr5.
2557         * tst-eintr5.c: New file.
2558
2559         * eintr.c (eintr_source): Prevent sending signal to self.
2560
2561         * tst-eintr2.c (tf1): Improve error message.
2562
2563 2003-12-20  Ulrich Drepper  <drepper@redhat.com>
2564
2565         * sysdeps/unix/sysv/linux/Makefile (CFLAGS-getpid.c): Define.
2566         * sysdeps/unix/sysv/linux/getpid.c: New file.
2567         * pthread_cancel.c: Add comment explaining use of PID field.
2568         * sysdeps/unix/sysv/linux/pthread_kill.c: Likewise.
2569         * pthread_getattr_np.c: Use abs() when comparing PID and TID fields.
2570         * sysdeps/unix/sysv/linux/fork.c: Negate PID field of parent
2571         temporarily to signal the field must not be relied on and updated
2572         by getpid().
2573         * sysdeps/unix/sysv/linux/pt-raise.c: Handle case where PID is
2574         temporarily negative.
2575         * sysdeps/unix/sysv/linux/raise.c: Likewise.
2576
2577 2003-12-19  Ulrich Drepper  <drepper@redhat.com>
2578
2579         * eintr.c (setup_eintr): Add new parameter.  Pass to thread function.
2580         (eintr_source): If ARG != NULL, use pthread_kill.
2581         * tst-eintr1.c: Adjust for this change.
2582         * tst-eintr2.c: Likewise.
2583         * Makefile (tests): Add tst-eintr3 and tst-eintr4.
2584         * tst-eintr3.c: New file.
2585         * tst-eintr4.c: New file.
2586
2587 2003-12-19  Jakub Jelinek  <jakub@redhat.com>
2588
2589         * libc-cancellation.c (__libc_enable_asynccancel): Don't cancel
2590         if CANCELSTATE_BITMASK is set.
2591         * sysdeps/pthread/librt-cancellation.c (__librt_enable_asynccancel):
2592         Likewise.
2593
2594         * Makefile (tests): Add tst-cancel22 and tst-cancel23.
2595         (tests-reverse): Add tst-cancel23.
2596         * tst-cancel22.c: New test.
2597         * tst-cancel23.c: New test.
2598
2599 2003-12-18  Ulrich Drepper  <drepper@redhat.com>
2600
2601         * tst-eintr1.c: Better error messages.
2602
2603         * Makefile (tests): Add tst-eintr2.
2604         * tst-eintr2.c: New file.
2605
2606 2003-12-18  Jakub Jelinek  <jakub@redhat.com>
2607
2608         * Makefile (tests): Add tst-cancel21 and tst-cancelx21.
2609         (CFLAGS-tst-cancelx21.c): Set.
2610         * tst-cancel21.c: New test.
2611         * tst-cancelx21.c: New test.
2612
2613         * unwind.c (FRAME_LEFT): Add adj argument.  Subtract it from each
2614         comparison operand.
2615         (unwind_stop): Use _JMPBUF_CFA_UNWINDS_ADJ macro instead of
2616         _JMPBUF_CFA_UNWINDS.  Adjust FRAME_LEFT invocations.
2617         * pt-longjmp.c: Include jmpbuf-unwind.h.
2618         (__pthread_cleanup_upto): Use _JMPBUF_UNWINDS_ADJ macro instead of
2619         _JMPBUF_UNWINDS.  Adjust compared pointers.
2620         * init.c (__pthread_initialize_minimal_internal): Initialize
2621         pd->stackblock_size.
2622         * sysdeps/pthread/jmpbuf-unwind.h: Removed.
2623         * sysdeps/alpha/jmpbuf-unwind.h: New file.
2624         * sysdeps/i386/jmpbuf-unwind.h: New file.
2625         * sysdeps/powerpc/jmpbuf-unwind.h: New file.
2626         * sysdeps/s390/jmpbuf-unwind.h: New file.
2627         * sysdeps/sh/jmpbuf-unwind.h: New file.
2628         * sysdeps/sparc/sparc32/jmpbuf-unwind.h: New file.
2629         * sysdeps/x86_64/jmpbuf-unwind.h: New file.
2630         * sysdeps/unix/sysv/linux/ia64/jmpbuf-unwind.h: Include stdint.h.
2631         (_JMPBUF_CFA_UNWINDS): Remove.
2632         (_JMPBUF_CFA_UNWINDS_ADJ, _JMPBUF_UNWINDS_ADJ): Define.
2633
2634 2003-12-12  Jakub Jelinek  <jakub@redhat.com>
2635
2636         * Makefile (tests): Add tst-cancel20 and tst-cancelx20.
2637         (CFLAGS-tst-cancelx20.c): Set.
2638         * tst-cancel20.c: New test.
2639         * tst-cancelx20.c: New test.
2640
2641 2003-12-17  Ulrich Drepper  <drepper@redhat.com>
2642
2643         * init.c (__pthread_initialize_minimal_internal): Don't treat
2644         architectures with separate register stack special here when
2645         computing default stack size.
2646
2647 2003-12-17  Roland McGrath  <roland@redhat.com>
2648
2649         * Makefile (tst-cancelx7-ARGS): New variable.
2650         Reportd by Greg Schafer <gschafer@zip.com.au>.
2651
2652 2003-12-17  Jakub Jelinek  <jakub@redhat.com>
2653
2654         * Makefile (tests): Add tst-stack3.  Depend on $(objpfx)tst-stack3-mem.
2655         (generated): Add tst-stack3.mtrace and tst-stack3-mem.
2656         (tst-stack3-ENV): Set.
2657         ($(objpfx)tst-stack3-mem): New.
2658         * tst-stack3.c: New test.
2659
2660 2003-12-10  David Mosberger  <davidm@hpl.hp.com>
2661
2662         * sysdeps/unix/sysv/linux/ia64/pt-initfini.c (_init_EPILOG_BEGINS):
2663         Add unwind directives.  Drop unused .regstk directive.
2664         (_fini_EPILOG_BEGINS): Add unwind directives.
2665
2666 2003-12-11  Ulrich Drepper  <drepper@redhat.com>
2667
2668         * sysdeps/unix/sysv/linux/i386/lowlevellock.h (lll_futex_wait):
2669         Assume parameter is a pointer.
2670         (lll_futex_wake): Likewise.
2671         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h (lll_futex_wait):
2672         Likewise.
2673         (lll_futex_wake): Likewise.
2674         Reported by Boris Hu.
2675         * sysdeps/unix/sysv/linux/unregister-atfork.c
2676         (__unregister_atfork): Pass pointer to refcntr to lll_futex_wait.
2677
2678         * sysdeps/unix/sysv/linux/sem_wait.c (__new_sem_wait): Simplify a bit.
2679
2680 2003-12-10  Ulrich Drepper  <drepper@redhat.com>
2681
2682         * sysdeps/pthread/bits/libc-lock.h (__rtld_lock_initialize): Define.
2683         * sysdeps/unix/sysv/linux/fork.c (__libc_fork): Call
2684         __rtld_lock_initialize for ld.so lock.
2685         Patch in part by Adam Li <adam.li@intel.com>.
2686
2687 2003-12-02  David Mosberger  <davidm@hpl.hp.com>
2688
2689         * Makefile (link-libc-static): Remove -lgcc_eh---it's already mentioned
2690         in $(gnulib).  Also, remove stale comment.
2691
2692 2003-11-12  David Mosberger  <davidm@hpl.hp.com>
2693
2694         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h (PSEUDO): Take
2695         advantage of new syscall stub and optimize accordingly.
2696
2697         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h (__NR_futex): Rename
2698         from SYS_futex, to match expectations of
2699         sysdep.h:DO_INLINE_SYSCALL.
2700         (lll_futex_clobbers): Remove.
2701         (lll_futex_timed_wait): Rewrite in terms of DO_INLINE_SYSCALL.
2702         (lll_futex_wake): Likewise.
2703         (lll_futex_requeue): Likewise.
2704         (__lll_mutex_trylock): Rewrite to a macro, so we can include this
2705         file before DO_INLINE_SYSCALL is defined (proposed by Jakub
2706         Jelinek).
2707         (__lll_mutex_lock): Likewise.
2708         (__lll_mutex_cond_lock): Likewise.
2709         (__lll_mutex_timed_lock): Likewise.
2710         (__lll_mutex_unlock): Likewise.
2711         (__lll_mutex_unlock_force): Likewise.
2712
2713         * sysdeps/ia64/tls.h: Move declaration of __thread_self up so it
2714         comes before the include of <sysdep.h>.
2715         (THREAD_SELF_SYSINFO): New macro.
2716         (THREAD_SYSINFO): Likewise.
2717         (INIT_SYSINFO): New macro.
2718         (TLS_INIT_TP): Call INIT_SYSINFO.
2719
2720         * sysdeps/ia64/tcb-offsets.sym: Add SYSINFO_OFFSET.
2721
2722         * sysdeps/pthread/createthread.c (create_thread): Use
2723         THREAD_SELF_SYSINFO and THREAD_SYSINFO instead of open code.
2724         * allocatestack.c (allocate_stack): Use THREAD_SYSINFO and
2725         THREAD_SELF_SYSINFO instead of open code.
2726         * sysdeps/i386/tls.h (THREAD_SELF_SYSINFO): New macro.
2727         (THREAD_SYSINFO): Likewise.
2728
2729         * sysdeps/unix/sysv/linux/ia64/dl-sysdep.h: New file.
2730
2731         * sysdeps/unix/sysv/linux/ia64/pt-vfork.S: Work around gas problem.
2732
2733 2003-12-06  Ulrich Drepper  <drepper@redhat.com>
2734
2735         * sysdeps/unix/sysv/linux/ia64/pt-initfini.c: Use .init_array
2736         instead of .init.  Patch by David Mosberger.
2737
2738 2003-11-30  Thorsten Kukuk  <kukuk@suse.de>
2739
2740         * sysdeps/pthread/configure.in: Remove broken declaration in C
2741         cleanup handling check.
2742
2743 2003-11-30  Andreas Jaeger  <aj@suse.de>
2744
2745         * Makefile (CFLAGS-pt-initfini.s): Add $(fno_unit_at_a_time).
2746         * sysdeps/unix/sysv/linux/x86_64/Makefile (CFLAGS-pt-initfini.s):
2747         Likewise.
2748
2749 2003-11-27  Jakub Jelinek  <jakub@redhat.com>
2750
2751         * sysdeps/unix/sysv/linux/internaltypes.h (ATTR_FLAG_OLDATTR): Define.
2752         * pthread_attr_destroy.c: Include shlib-compat.h.
2753         (__pthread_attr_destroy): Return immediately if ATTR_FLAG_OLDATTR
2754         is set in iattr->flags.
2755         * pthread_attr_init.c (__pthread_attr_init_2_0): Set ATTR_FLAG_OLDATTR.
2756
2757 2003-11-21  Jakub Jelinek  <jakub@redhat.com>
2758
2759         * Makefile (distribute): Add tst-cleanup4aux.c.
2760
2761         * tst-cond12.c (prepare): Add prototype.  Move after test-skeleton.c
2762         include.
2763
2764 2003-11-21  Ulrich Drepper  <drepper@redhat.com>
2765
2766         * tst-cond12.c (do_test): If USE_COND_SIGNAL is defined, use
2767         pthread_cond_signal.
2768
2769         * sysdeps/pthread/pthread_cond_wait.c (__pthread_cond_wait): Don't
2770         store mutex address if the current value is ~0l.
2771         * sysdeps/pthread/pthread_cond_timedwait.c
2772         (__pthread_cond_timedwait): Likewise.
2773         * sysdeps/pthread/pthread_cond_broadcast.c
2774         (__pthread_cond_broadcast): Don't use requeue for pshared
2775         condvars.
2776
2777         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S
2778         (__pthread_cond_wait): Don't store mutex address if the current
2779         value is ~0l.
2780         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S
2781         (__pthread_cond_timedwait): Likewise.
2782         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S
2783         (__pthread_cond_broadcast): Don't use requeue for pshared
2784         condvars.
2785
2786         * pthread_cond_init.c (__pthread_cond_init): Initialize __mutex
2787         element with ~0l for pshared condvars, with NULL otherwise.
2788
2789         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S
2790         (__pthread_cond_wait): Don't store mutex address if the current
2791         value is ~0l.
2792         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S
2793         (__pthread_cond_timedwait): Likewise.
2794         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S
2795         (__pthread_cond_broadcast): Don't use requeue for pshared
2796         condvars.
2797
2798         * Makefile: Add rules to build and run tst-cond12 and tst-cond13.
2799         * tst-cond12.c: New file.
2800         * tst-cond13.c: New file.
2801
2802 2003-11-17  Ulrich Drepper  <drepper@redhat.com>
2803
2804         * sysdeps/pthread/configure.in: Make missing forced unwind support
2805         fatal.
2806
2807 2003-11-11  Ulrich Drepper  <drepper@redhat.com>
2808
2809         * pthreadP.h: Don't declare __pthread_unwind as weak inside libpthread.
2810
2811 2003-11-06  Ulrich Drepper  <drepper@redhat.com>
2812
2813         * Makefile: Add magic to clean up correctly.
2814
2815 2003-11-05  Jakub Jelinek  <jakub@redhat.com>
2816
2817         * unwind.c (FRAME_LEFT): Define.
2818         (unwind_stop): Handle old style cleanups here.
2819         (__pthread_unwind): Handle old style cleanups only if
2820         !HAVE_FORCED_UNWIND.
2821         * Makefile (tests): Add tst-cleanup4 and tst-cleanupx4.
2822         (CFLAGS-tst-cleanupx4.c): Add -fexceptions.
2823         ($(objpfx)tst-cleanup4): Depend on $(objpfx)tst-cleanup4aux.o.
2824         ($(objpfx)tst-cleanupx4): Likewise.
2825         * tst-cleanup4.c: New test.
2826         * tst-cleanup4aux.c: New.
2827         * tst-cleanupx4.c: New test.
2828
2829 2003-11-04  Ulrich Drepper  <drepper@redhat.com>
2830
2831         * sysdeps/pthread/bits/stdio-lock.h: Use lll_*lock instead of
2832         lll_mutex_*lock macros to skip atomic operations on some archs.
2833
2834 2003-11-03  Ulrich Drepper  <drepper@redhat.com>
2835
2836         * sysdeps/pthread/tst-timer.c (main): Initialize
2837         sigev2.sigev_value as well.
2838
2839 2003-10-15  Roland McGrath  <roland@redhat.com>
2840
2841         * sysdeps/pthread/configure.in: Barf if visibility attribute support
2842         is missing.
2843         * sysdeps/pthread/configure: Regenerated.
2844
2845 2003-10-09  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
2846
2847         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Completely revamp the
2848         locking macros.  No distinction between normal and mutex locking
2849         anymore.
2850         * sysdeps/unix/sysv/linux/sh/lowlevellock.S: Rewrite mutex locking.
2851         Merge bits from lowlevelmutex.S we still need.
2852         * sysdeps/unix/sysv/linux/sh/libc-lowlevelmutex.S: Remove.
2853         * sysdeps/unix/sysv/linux/sh/lowlevelmutex.S: Likewise.
2854         * sysdeps/unix/sysv/linux/sh/not-cancel.h: New file.
2855         * sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: Adjust for
2856         new mutex implementation.
2857         * sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: Likewise.
2858         * sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: Likewise.
2859         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Likewise.
2860         * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Likewise.
2861         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: Likewise.
2862         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S: Likewise.
2863         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S: Likewise.
2864         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: Likewise.
2865         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: Likewise.
2866         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h (PSEUDO): Also defined
2867         symbol for entry point to avoid cancellation.
2868
2869 2003-10-07  Jakub Jelinek  <jakub@redhat.com>
2870
2871         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Backout 2003-10-02
2872         changes.
2873         (SAVE_OLDTYPE_0): Fix a typo.
2874
2875 2003-10-03  Ulrich Drepper  <drepper@redhat.com>
2876
2877         * sysdeps/unix/sysv/linux/i386/pthread_once.S (__pthread_once):
2878         Check __sigsetjmp return value.  Reported by Daniel Jacobowitz.
2879
2880 2003-10-02  Ulrich Drepper  <drepper@redhat.com>
2881
2882         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h (DOCARGS_1): Use
2883         correct offset.
2884
2885 2003-10-02  Jakub Jelinek  <jakub@redhat.com>
2886
2887         * Makefile (tests): Add tst-cancel19.
2888         * tst-cancel19.c: New test.
2889
2890 2003-10-02  Ulrich Drepper  <drepper@redhat.com>
2891
2892         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Fix saving and
2893         restoring of the old cancellation type.
2894
2895 2003-09-30  Jakub Jelinek  <jakub@redhat.com>
2896
2897         * sysdeps/pthread/malloc-machine.h: Remove misleading comment.
2898
2899 2003-09-27  Wolfram Gloger  <wg@malloc.de>
2900
2901         * sysdeps/pthread/malloc-machine.h: New file
2902
2903 2003-09-24  Roland McGrath  <roland@redhat.com>
2904
2905         * allocatestack.c (__make_stacks_executable): Don't ignore return
2906         value from _dl_make_stack_executable.
2907
2908 2003-09-24  Ulrich Drepper  <drepper@redhat.com>
2909
2910         * allocatestack.c (__make_stacks_executable): Also change
2911         permission of the currently unused stacks.
2912
2913         * allocatestack.c (change_stack_perm): Split out from
2914         __make_stacks_executable.
2915         (allocate_stack): If the required permission changed between the time
2916         we started preparing the stack and queueing it, change the permission.
2917         (__make_stacks_executable): Call change_stack_perm.
2918
2919         * Makefile: Build tst-execstack-mod locally.
2920         * tst-execstack-mod.c: New file.
2921
2922 2003-09-23  Jakub Jelinek  <jakub@redhat.com>
2923
2924         * Makefile (tests): Only add tst-execstack if have-z-execstack is yes.
2925
2926 2003-09-23  Roland McGrath  <roland@redhat.com>
2927
2928         * tst-execstack.c: New file.
2929         * Makefile (tests): Add it.
2930         ($(objpfx)tst-execstack, $(objpfx)tst-execstack.out): New targets.
2931         (LDFLAGS-tst-execstack): New variable.
2932
2933         * allocatestack.c (allocate_stack): Use GL(dl_stack_flags) to decide
2934         whether to use PROT_EXEC for stack mmap.
2935         (__make_stacks_executable): New function.
2936         * pthreadP.h: Declare it.
2937         * init.c (__pthread_initialize_minimal_internal): Set
2938         GL(dl_make_stack_executable_hook) to that.
2939
2940 2003-09-22  Ulrich Drepper  <drepper@redhat.com>
2941
2942         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Adjust for latest
2943         recommendation from AMD re avoidance of lock prefix.
2944
2945 2003-09-22  Jakub Jelinek  <jakub@redhat.com>
2946
2947         * sysdeps/unix/sysv/linux/lowlevellock.c (__lll_timedlock_wait): Use
2948         lll_futex_timed_wait instead of lll_futex_wait.
2949         * sysdeps/unix/sysv/linux/s390/lowlevellock.c: Removed.
2950         * sysdeps/unix/sysv/linux/s390/lowlevelmutex.c: Removed.
2951         * sysdeps/unix/sysv/linux/s390/libc-lowlevellock.c: Removed.
2952         * sysdeps/unix/sysv/linux/s390/libc-lowlevelmutex.c: Removed.
2953         * sysdeps/unix/sysv/linux/s390/sem_trywait.c: Removed.
2954         * sysdeps/unix/sysv/linux/s390/sem_wait.c: Removed.
2955         * sysdeps/unix/sysv/linux/s390/sem_post.c: Removed.
2956         * sysdeps/unix/sysv/linux/s390/sem_timedwait.c: Removed.
2957         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Include atomic.h.
2958         Completely revamp the locking macros.  No distinction between
2959         normal and mutex locking anymore.
2960         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
2961         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h (__lll_lock_wait,
2962         __lll_lock_timedwait): Fix prototypes.
2963         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h (__lll_lock_wait,
2964         __lll_lock_timedwait): Likewise.
2965         (lll_mutex_lock, lll_mutex_cond_lock): Use _val instead of _bool
2966         macros, add __builtin_expect.
2967         (lll_mutex_timedlock): Likewise.  Fix return value.
2968         * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevelmutex.S: Removed.
2969         * sysdeps/unix/sysv/linux/i386/i586/libc-lowlevelmutex.S: Removed.
2970         * sysdeps/unix/sysv/linux/i386/i586/lowlevelmutex.S: Removed.
2971         * sysdeps/unix/sysv/linux/i386/i686/libc-lowlevelmutex.S: Removed.
2972         * sysdeps/unix/sysv/linux/i386/i686/lowlevelmutex.S: Removed.
2973         * sysdeps/unix/sysv/linux/x86_64/libc-lowlevelmutex.S: Removed.
2974         * sysdeps/unix/sysv/linux/lowlevelmutex.c: Removed.
2975         * sysdeps/unix/sysv/linux/libc-lowlevelmutex.c: Removed.
2976
2977 2003-09-22  Ulrich Drepper  <drepper@redhat.com>
2978
2979         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S
2980         (__lll_mutex_lock_wait): Minor optimization to avoid one atomic
2981         operation if possible.
2982
2983         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Don't play tricks
2984         like jumping over the lock prefix.
2985
2986 2003-09-21  Ulrich Drepper  <drepper@redhat.com>
2987
2988         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Completely revamp the
2989         locking macros.  No distinction between normal and mutex locking
2990         anymore.
2991         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
2992         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: Likewise.
2993         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
2994         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: Rewrite mutex
2995         locking.  Merge bits from lowlevelmutex.S we still need.
2996         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Likewise.
2997         * sysdeps/unix/sysv/linux/lowlevellock.c: Likewise.
2998         * sysdeps/unix/sysv/linux/i386/i486/lowlevelmutex.S: Removed.
2999         * sysdeps/unix/sysv/linux/x86_64/lowlevelmutex.S: Removed.
3000         * Makefile (routines): Remove libc-lowlevelmutex.
3001         (libpthread-rountines): Remove lowlevelmutex.
3002         * sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S: Adjust
3003         for new mutex implementation.
3004         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S: Likewise.
3005         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Likewise.
3006         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Likewise.
3007         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: Likewise.
3008         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
3009         Likewise.
3010         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
3011         Likewise.
3012         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S: Likewise.
3013         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: Likewise.
3014         * sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S: Likewise
3015         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S: Likewise.
3016         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: Likewise.
3017         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: Likewise.
3018         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: Likewise.
3019         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S:
3020         Likewise.
3021         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S:
3022         Likewise.
3023         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: Likewise.
3024         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: Likewise.
3025         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S: Likewise.
3026         Don't use requeue.
3027         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S: Likewise.
3028         * sysdeps/pthread/pthread_cond_signal.c: Don't use requeue.
3029
3030 2003-09-20  Ulrich Drepper  <drepper@redhat.com>
3031
3032         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Don't match memory
3033         in parameters of asm with output parameters.
3034
3035         * pthread_mutex_unlock.c (__pthread_mutex_unlock_usercnt): Change
3036         type of DECR parameter to int.
3037         * pthreadP.h: Adjust prototype of __pthread_mutex_unlock_usercnt.
3038
3039 2003-09-18  Jakub Jelinek  <jakub@redhat.com>
3040
3041         * tst-attr3.c (tf, do_test): Print stack start/end/size and
3042         guardsize for each thread.
3043
3044 2003-09-17  Jakub Jelinek  <jakub@redhat.com>
3045
3046         * sysdeps/pthread/pthread.h (pthread_getattr_np): Clarify usage.
3047         * sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c
3048         (pthread_attr_setaffinity_np): Handle cpuset == NULL.
3049
3050         * sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c
3051         (pthread_attr_getaffinity_np): Don't segfault if iattr->cpuset is
3052         NULL.
3053         * pthread_getattr_np.c: Set cpuset using pthread_getaffinity_np.
3054         * pthreadP.h (pthread_getaffinity_np): Add hidden_proto.
3055         * sysdeps/unix/sysv/linux/pthread_getaffinity.c
3056         (pthread_getaffinity_np): Add hidden_def.
3057
3058         * Makefile (tests): Add tst-attr3.
3059         * tst-attr3.c: New test.
3060
3061         * sysdeps/i386/Makefile (CFLAGS-tst-align.c): Remove.
3062
3063 2003-09-15  Jakub Jelinek  <jakub@redhat.com>
3064
3065         * sysdeps/i386/Makefile (CFLAGS-pthread_create.c,
3066         CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
3067
3068 2003-09-17  Jakub Jelinek  <jakub@redhat.com>
3069
3070         * Makefile (CFLAGS-tst-align.c): Add $(stack-align-test-flags).
3071         * tst-align.c: Include tst-stack-align.h.
3072         (tf, do_test): Use TEST_STACK_ALIGN macro.
3073
3074 2003-09-17  Ulrich Drepper  <drepper@redhat.com>
3075
3076         * pthread_attr_init.c (__pthread_attr_init_2_0): Remove unused
3077         variable.
3078
3079 2003-09-16  Ulrich Drepper  <drepper@redhat.com>
3080
3081         * pthread_getattr_np.c (pthread_getattr_np): Correctly fill in the
3082         stack-related values for the initial thread.
3083
3084 2003-09-15  Jakub Jelinek  <jakub@redhat.com>
3085
3086         * Makefile (CFLAGS-pthread_once.c): Add $(uses-callbacks).
3087
3088 2003-09-11  Ulrich Drepper  <drepper@redhat.com>
3089
3090         * pthread_mutex_lock.c: Minor code rearrangements.
3091
3092 2003-09-05  Roland McGrath  <roland@redhat.com>
3093
3094         * pthread_create.c (__pthread_pthread_sizeof_descr): Removed.
3095         Instead, include ../nptl_db/db_info.c to do its magic.
3096         * pthread_key_create.c (__pthread_pthread_keys_max): Removed.
3097         (__pthread_pthread_key_2ndlevel_size): Likewise.
3098         * sysdeps/alpha/tls.h (DB_THREAD_SELF): New macro.
3099         * sysdeps/i386/tls.h (DB_THREAD_SELF): New macro.
3100         * sysdeps/ia64/tls.h (DB_THREAD_SELF): New macro.
3101         * sysdeps/powerpc/tls.h (DB_THREAD_SELF): New macro.
3102         * sysdeps/s390/tls.h (DB_THREAD_SELF): New macro.
3103         * sysdeps/sh/tls.h (DB_THREAD_SELF): New macro.
3104         * sysdeps/sparc/tls.h (DB_THREAD_SELF): New macro.
3105         * sysdeps/x86_64/tls.h (DB_THREAD_SELF): New macro.
3106         * sysdeps/alpha/td_ta_map_lwp2thr.c: File removed.
3107         * sysdeps/generic/td_ta_map_lwp2thr.c: File removed.
3108         * sysdeps/i386/td_ta_map_lwp2thr.c: File removed.
3109         * sysdeps/ia64/td_ta_map_lwp2thr.c: File removed.
3110         * sysdeps/powerpc/td_ta_map_lwp2thr.c: File removed.
3111         * sysdeps/s390/td_ta_map_lwp2thr.c: File removed.
3112         * sysdeps/sh/td_ta_map_lwp2thr.c: File removed.
3113         * sysdeps/sparc/td_ta_map_lwp2thr.c: File removed.
3114         * sysdeps/x86_64/td_ta_map_lwp2thr.c: File removed.
3115
3116 2003-09-08  Ulrich Drepper  <drepper@redhat.com>
3117
3118         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: Change type
3119         of pthread_t to be compatible with LT.
3120         * sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h: Likewise.
3121         * sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h: Likewise.
3122         * sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Likewise.
3123         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Likewise.
3124         * sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h: Likewise.
3125         * sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h: Likewise.
3126         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h: Likewise.
3127
3128 2003-09-04  Ulrich Drepper  <drepper@redhat.com>
3129
3130         * sysdeps/unix/sysv/linux/i386/not-cancel.h (fcntl_not_cancel): Define.
3131
3132 2003-09-04  Jakub Jelinek  <jakub@redhat.com>
3133
3134         * unwind-forcedunwind.c: Move to...
3135         * sysdeps/pthread/unwind-forcedunwind.c: ...here.
3136         (pthread_cancel_init): Use ARCH_CANCEL_INIT if defined.
3137         * sysdeps/pthread/jmpbuf-unwind.h: New file.
3138         * sysdeps/unix/sysv/linux/ia64/unwind-forcedunwind.c: New file.
3139         * sysdeps/unix/sysv/linux/ia64/jmpbuf-unwind.h: New file.
3140         * unwind.c: Include jmpbuf-unwind.h.
3141         (unwind_stop): Use _JMPBUF_CFA_UNWINDS macro.
3142
3143 2003-09-02  Jakub Jelinek  <jakub@redhat.com>
3144
3145         * sysdeps/unix/sysv/linux/ia64/bits/local_lim.h: New file.
3146         * sysdeps/unix/sysv/linux/ia64/Versions (libpthread): Export
3147         pthread_attr_setstack and pthread_attr_setstacksize @@GLIBC_2.3.3.
3148         * sysdeps/unix/sysv/linux/alpha/bits/local_lim.h: New file.
3149         * sysdeps/unix/sysv/linux/alpha/Versions: New file.
3150         * sysdeps/unix/sysv/linux/sparc/bits/local_lim.h: New file.
3151         * sysdeps/unix/sysv/linux/sparc/Versions: New file.
3152         * pthread_attr_setstack.c (__old_pthread_attr_setstack): New function.
3153         (pthread_attr_setstack): If PTHREAD_STACK_MIN != 16384, export
3154         as @@GLIBC_2.3.2 and also export compatibility @GLIBC_2.2.
3155         * pthread_attr_setstacksize.c (__old_pthread_attr_setstacksize): New
3156         function.
3157         (pthread_attr_setstacksize): If PTHREAD_STACK_MIN != 16384, export
3158         as @@GLIBC_2.3.2 and also export compatibility @GLIBC_2.1.
3159         * Makefile (tests): Add tst-stack2.
3160         * tst-stack2.c: New test.
3161         * tst-stack1.c: Include limits.h and sys/param.h.
3162         (do_test): Set size to MAX (4 * getpagesize (), PTHREAD_STACK_MIN).
3163
3164         * pthread_condattr_setpshared.c: Include errno.h.
3165         (pthread_condattr_setpshared): Return EINVAL if pshared
3166         is neither PTHREAD_PROCESS_PRIVATE nor PTHREAD_PROCESS_SHARED.
3167
3168         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h (PSEUDO): Also
3169         defined symbol for entry point to avoid cancellation.
3170         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h (PSEUDO):
3171         Likewise.
3172         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h (PSEUDO):
3173         Likewise.
3174         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h (PSEUDO):
3175         Likewise.
3176         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h (PSEUDO):
3177         Likewise.
3178         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h (PSEUDO):
3179         Likewise.
3180         * sysdeps/unix/sysv/linux/i386/not-cancel.h (__open_nocancel,
3181         __close_nocancel, __read_nocancel, __write_nocancel,
3182         __waitpid_nocancel): Add attribute_hidden.  If not in libc.so,
3183         libpthread.so or librt.so, define to corresponding function
3184         without _nocancel suffix.
3185         * sysdeps/unix/sysv/linux/s390/not-cancel.h: New file.
3186         * sysdeps/unix/sysv/linux/powerpc/not-cancel.h: New file.
3187         * sysdeps/unix/sysv/linux/sparc/not-cancel.h: New file.
3188
3189         * sysdeps/unix/sysv/linux/x86_64/not-cancel.h: Fix a typo.
3190
3191 2003-09-02  Ulrich Drepper  <drepper@redhat.com>
3192
3193         * sysdeps/unix/sysv/linux/i386/not-cancel.h: New file.
3194         * sysdeps/unix/sysv/linux/x86_64/not-cancel.h: New file.
3195
3196         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Make sure the code
3197         in subsections has a symbol associated with it.
3198
3199         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h (PSEUDO): Also
3200         defined symbol for entry point to avoid cancellation.
3201         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h (PSEUDO): Likewise.
3202
3203 2003-09-01  Jakub Jelinek  <jakub@redhat.com>
3204
3205         * Makefile (tests): Add tst-tls5.
3206         (module-names): Add tst-tls5mod{,a,b,c,d,e,f}.
3207         ($(objpfx)tst-tls5mod{,a,b,c,d,e,f}.so-no-z-defs): Set to yes.
3208         ($(objpfx)tst-tls5): New.
3209         ($(objpfx)tst-tls6.out): Likewise.
3210         (tests): Depend on $(objpfx)tst-tls6.out.
3211         * tst-tls3.c: Include stdint.h and pthreaddef.h.
3212         (do_test): Check pthread_self () return value alignment.
3213         * tst-tls3mod.c: Include stdint.h and pthreaddef.h.
3214         (tf): Check pthread_self () return value alignment.
3215         * tst-tls5.c: New test.
3216         * tst-tls5.h: New.
3217         * tst-tls5mod.c: New.
3218         * tst-tls5moda.c: New.
3219         * tst-tls5modb.c: New.
3220         * tst-tls5modc.c: New.
3221         * tst-tls5modd.c: New.
3222         * tst-tls5mode.c: New.
3223         * tst-tls5modf.c: New.
3224         * tst-tls6.sh: New test.
3225
3226         * sysdeps/pthread/pthread-functions.h (struct pthread_functions): Add
3227         ptr___pthread_cond_timedwait and ptr___pthread_cond_timedwait_2_0.
3228         * init.c (pthread_functions): Initialize them.
3229         * forward.c (pthread_cond_timedwait@GLIBC_2.0,
3230         pthread_cond_timedwait@@GLIBC_2.3.2): New forwards.
3231         * Versions (libc): Export pthread_cond_timedwait@GLIBC_2.0,
3232         pthread_cond_timedwait@@GLIBC_2.3.2.
3233
3234 2003-09-01  Jakub Jelinek  <jakub@redhat.com>
3235
3236         * sysdeps/unix/sysv/linux/alpha/timer_create.c: New file.
3237         * sysdeps/unix/sysv/linux/alpha/timer_delete.c: New file.
3238         * sysdeps/unix/sysv/linux/alpha/timer_getoverr.c: New file.
3239         * sysdeps/unix/sysv/linux/alpha/timer_gettime.c: New file.
3240         * sysdeps/unix/sysv/linux/alpha/timer_settime.c: New file.
3241         * sysdeps/unix/sysv/linux/alpha/Versions: New file.
3242
3243         * sysdeps/unix/sysv/linux/alpha/aio_cancel.c: New file.
3244
3245         * sysdeps/unix/sysv/linux/ia64/bits/posix_opt.h: Define
3246         _POSIX_THREAD_PRIORITY_SCHEDULING.
3247         * sysdeps/unix/sysv/linux/x86_64/bits/posix_opt.h: Likewise.
3248
3249 2003-08-31  Ulrich Drepper  <drepper@redhat.com>
3250
3251         * sysdeps/pthread/bits/stdio-lock.h (_IO_acquire_lock): Avoid
3252         nested function, use static inline function from libio.h.
3253         Code by Richard Henderson.
3254
3255         * sysdeps/pthread/bits/libc-lock.h: Mark pthread_setcancelstate as
3256         weak.
3257
3258 2003-08-30  Jakub Jelinek  <jakub@redhat.com>
3259
3260         * sysdeps/unix/sysv/linux/sparc/sparc64/Versions: New file.
3261         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c: New file.
3262         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c: New file.
3263         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c: New file.
3264         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c: New file.
3265         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c: New file.
3266         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: New file.
3267         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: New file.
3268         * sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h: New file.
3269         * sysdeps/unix/sysv/linux/sparc/bits/semaphore.h: New file.
3270         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: New file.
3271         * sysdeps/unix/sysv/linux/sparc/pthread_once.c: New file.
3272         * sysdeps/unix/sysv/linux/sparc/pt-vfork.S: New file.
3273         * sysdeps/unix/sysv/linux/sparc/fork.c: New file.
3274         * sysdeps/unix/sysv/linux/sparc/aio_cancel.c: New file.
3275         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.c: New file.
3276         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.c: New file.
3277         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_unlock.c: New file.
3278         * sysdeps/sparc/sparc32/pthread_spin_lock.c: New file.
3279         * sysdeps/sparc/sparc32/pthread_spin_trylock.c: New file.
3280         * sysdeps/sparc/sparc32/pthreaddef.h: New file.
3281         * sysdeps/sparc/sparc64/pthread_spin_lock.c: New file.
3282         * sysdeps/sparc/sparc64/pthread_spin_trylock.c: New file.
3283         * sysdeps/sparc/sparc64/pthread_spin_unlock.c: New file.
3284         * sysdeps/sparc/sparc64/pthreaddef.h: New file.
3285         * sysdeps/sparc/tls.h: New file.
3286         * sysdeps/sparc/tcb-offsets.sym: New file.
3287         * sysdeps/sparc/Makefile: New file.
3288         * sysdeps/sparc/td_ta_map_lwp2thr.c: New file.
3289         * init.c [__sparc__] (__NR_set_tid_address): Define.
3290
3291 2003-08-29  Jakub Jelinek  <jakub@redhat.com>
3292
3293         * sysdeps/pthread/bits/stdio-lock.h (_IO_acquire_lock,
3294         _IO_release_lock): Define.
3295
3296 2003-08-29  Jakub Jelinek  <jakuB@redhat.com>
3297
3298         * tst-cancel4.c (tf_sigwait, tf_sigwaitinfo, tf_sigtimedwait): Add
3299         sigemptyset before sigaddset.  Reported by jreiser@BitWagon.com.
3300
3301 2003-08-27  Ulrich Drepper  <drepper@redhat.com>
3302
3303         * sysdeps/pthread/pthread.h (pthread_exit): Remove __THROW.
3304         (__pthread_cleanup_class): Add missing return types of member
3305         functions.
3306
3307 2003-08-26  Steven Munroe <sjmunroe@us.ibm.com>
3308
3309         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h
3310         (lll_mutex_unlock_force): Add memory barrier between store and futex
3311         syscall.
3312
3313 2003-08-25  Ulrich Drepper  <drepper@redhat.com>
3314
3315         * tst-cancel4.c (do_test): Also unlink tempfname and remove
3316         tempmsg in first loop.
3317
3318 2003-08-18  Ulrich Drepper  <drepper@redhat.com>
3319
3320         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Define
3321         _POSIX_THREAD_PRIORITY_SCHEDULING.
3322         * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: Likewise.
3323
3324 2003-08-07  Jakub Jelinek  <jakub@redhat.com>
3325
3326         * sysdeps/pthread/bits/libc-lock.h [_LIBC && SHARED]
3327         (__rtld_lock_default_lock_recursive,
3328         __rtld_lock_default_unlock_recursive): Define.
3329         [_LIBC && SHARED] (__rtld_lock_lock_recursive,
3330         __rtld_lock_unlock_recursive): Define using
3331         GL(_dl_rtld_*lock_recursive).
3332         * init.c (__pthread_initialize_minimal_internal): Initialize
3333         _dl_rtld_lock_recursive and _dl_rtld_unlock_recursive.
3334         Lock GL(_dl_load_lock) the same number of times as
3335         GL(_dl_load_lock) using non-mt implementation was nested.
3336
3337         * pthreadP.h (__pthread_cleanup_upto): Add hidden_proto.
3338         * pt-longjmp.c (__pthread_cleanup_upto): Add hidden_def.
3339
3340 2003-08-06  Jakub Jelinek  <jakub@redhat.com>
3341
3342         * tst-cancel17.c (do_test): Make len2 maximum of page size and
3343         PIPE_BUF.
3344
3345 2003-08-07  Jakub Jelinek  <jakub@redhat.com>
3346
3347         * pthread_create.c (__pthread_create_2_0): Clear new_attr.cpuset.
3348
3349 2003-08-03  Jakub Jelinek  <jakub@redhat.com>
3350
3351         * sysdeps/pthread/createthread.c (do_clone): Move error handling
3352         to first syscall error check.  Move syscall error check for tkill
3353         into __ASSUME_CLONE_STOPPED #ifdef.
3354
3355 2003-08-02  Ulrich Drepper  <drepper@redhat.com>
3356
3357         * sysdeps/pthread/createthread.c (do_clone): If __ASSUME_CLONE_STOPPED
3358         is not defined, do explicit synchronization.
3359         (create_thread): Do not lock pd->lock here.  If __ASSUME_CLONE_STOPPED
3360         is not defined also unlock pd->lock for non-debugging case in case
3361         it is necessary.
3362         * pthread_create.c (start_thread): Always get and release pd->lock
3363         if __ASSUME_CLONE_STOPPED is not defined.
3364         (start_thread_debug): Removed.  Adjust users.
3365         * allocatestack.c (allocate_stack): Always initialize lock if
3366         __ASSUME_CLONE_STOPPED is not defined.
3367         * Makefile (tests): Add tst-sched1.
3368         * tst-sched1.c: New file.
3369
3370         * sysdeps/pthread/createthread.c (do_clone): Only use
3371         sched_setschduler and pass correct parameters.
3372
3373 2003-07-31  Jakub Jelinek  <jakub@redhat.com>
3374
3375         * sysdeps/pthread/pthread.h (pthread_attr_setstackaddr,
3376         pthread_attr_setstacksize): Change PTHREAD_STACK_SIZE to
3377         PTHREAD_STACK_MIN in comments.
3378
3379 2003-07-31  Jakub Jelinek  <jakub@redhat.com>
3380
3381         * sysdeps/pthread/pthread_cond_timedwait.c (__pthread_cond_timedwait):
3382         Shut up warnings if INTERNAL_SYSCALL_ERROR_P does not use its first
3383         argument.
3384         * sysdeps/unix/sysv/linux/timer_create.c (timer_create): Likewise.
3385         * pthread_condattr_setclock.c (pthread_condattr_setclock): Likewise.
3386         * sysdeps/unix/sysv/linux/s390/jmp-unwind.c: Include pthreaddef.h.
3387         (__pthread_cleanup_upto): Fix prototype.
3388         (_longjmp_unwind): Adjust caller.
3389         * sysdeps/unix/sysv/linux/s390/lowlevellock.h (__lll_mutex_timedlock):
3390         Change second argument to const struct pointer.
3391         * tst-sem8.c (main): Remove unused s2 and s3 variables.
3392         * tst-sem9.c (main): Likewise.
3393         * unwind.c: Include string.h for strlen prototype.
3394
3395 2003-07-31  Ulrich Drepper  <drepper@redhat.com>
3396
3397         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S
3398         (__pthread_cond_timedwait): Don't use cmov unless HAVE_CMOV is defined.
3399         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S:
3400         Define HAVE_CMOV.
3401         Patch by Nicholas Miell <nmiell@attbi.com>.
3402
3403 2003-07-30  Jakub Jelinek  <jakub@redhat.com>
3404
3405         * init.c (__pthread_initialize_minimal_internal): Initialize
3406         GL(dl_init_static_tls).
3407         * pthreadP.h (__pthread_init_static_tls): New prototype.
3408         * allocatestack.c (init_one_static_tls, __pthread_init_static_tls):
3409         New functions.
3410         * Makefile (tests): Add tst-tls4.
3411         (modules-names): Add tst-tls4moda and tst-tls4modb.
3412         ($(objpfx)tst-tls4): Link against libdl and libpthread.
3413         ($(objpfx)tst-tls4.out): Depend on tst-tls4moda.so and
3414         tst-tls4modb.so.
3415         * tst-tls4.c: New file.
3416         * tst-tls4moda.c: New file.
3417         * tst-tls4modb.c: New file.
3418
3419 2003-06-19  Daniel Jacobowitz  <drow@mvista.com>
3420
3421         * sysdeps/pthread/timer_create.c (timer_create): Call timer_delref
3422         before __timer_dealloc.
3423         * sysdeps/pthread/timer_routines.c (__timer_thread_find_matching):
3424         Don't call list_unlink.
3425
3426 2003-07-29  Roland McGrath  <roland@redhat.com>
3427
3428         * Makefile [$(build-shared) = yes] (tests): Depend on $(test-modules).
3429
3430 2003-07-25  Jakub Jelinek  <jakub@redhat.com>
3431
3432         * tst-cancel17.c (do_test): Check if aio_cancel failed.
3433         Don't reuse struct aiocb A if it failed.
3434         Write fpathconf (fds[1], _PC_PIPE_BUF) + 2 bytes using aio_write,
3435         not just one byte, as that does not block.
3436
3437 2003-07-22  Jakub Jelinek  <jakub@redhat.com>
3438
3439         * sysdeps/pthread/unwind-resume.c: New file.
3440         * sysdeps/pthread/Makefile (routines, shared-only-routines): Add
3441         unwind-resume in csu subdir.
3442         (CFLAGS-unwind-resume.c, CFLAGS-rt-unwind-resume.c): Compile with
3443         exceptions.
3444         (librt-sysdep_routines, librt-shared-only-routines): Add
3445         rt-unwind-resume.
3446         * sysdeps/pthread/rt-unwind-resume.c: New file.
3447         * unwind-forcedunwind.c: New file.
3448         * Makefile (libpthread-routines): Add unwind-forcedunwind.
3449         (libpthread-shared-only-routines): Likewise.
3450         (CFLAGS-unwind-forcedunwind.c): Compile with exceptions.
3451         * pthreadP.h (pthread_cancel_init): New prototype.
3452         * pthread_cancel.c (pthread_cancel): Call pthread_cancel_init.
3453
3454         * sysdeps/pthread/createthread.c (do_thread, create_thread): Make
3455         attr argument const struct pthread_attr *.
3456
3457         * res.c (__res_state): Return __resp.
3458         * descr.h: Include resolv.h.
3459         (struct pthread): Add res field.
3460         * pthread_create.c: Include resolv.h.
3461         (start_thread): Initialize __resp.
3462         * Makefile (tests): Add tst-_res1.
3463         (module-names): Add tst-_res1mod1, tst-_res1mod2.
3464         ($(objpfx)tst-_res1mod2.so): Depend on $(objpfx)tst-_res1mod1.so.
3465         ($(objpfx)tst-_res1): Depend on $(objpfx)tst-_res1mod2.so and
3466         libpthread.
3467         * tst-_res1.c: New file.
3468         * tst-_res1mod1.c: New file.
3469         * tst-_res1mod2.c: New file.
3470
3471 2003-07-21  Ulrich Drepper  <drepper@redhat.com>
3472
3473         * sysdeps/pthread/createthread.c: Don't define CLONE_STOPPED.
3474
3475         * Makefile: Define various *-no-z-defs variables for test DSOs
3476         which has undefined symbols.
3477
3478 2003-07-21  Steven Munroe  <sjmunroe@us.ibm.com>
3479
3480         * sysdeps/unix/sysv/linux/powerpc/pthread_once.c (__pthread_once):
3481         Retry if the stwcx fails to store once_control.
3482
3483 2003-07-20  Ulrich Drepper  <drepper@redhat.com>
3484
3485         * Makefile (libpthread-routines): Add pthread_attr_getaffinity and
3486         pthread_attr_setaffinity.
3487         * Versions [libpthread] (GLIBC_2.3.3): Likewise.
3488         * sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c: New file.
3489         * sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c: New file.
3490         * pthread_attr_destroy.c: Free cpuset element if allocated.
3491         * pthread_create.c: Pass iattr as additional parameter to
3492         create_thread.
3493         * sysdeps/pthread/createthread.c: If attribute is provided and
3494         a new thread is created with affinity set or scheduling parameters,
3495         start thread with CLONE_STOPPED.
3496         * sysdeps/pthread/pthread.h: Declare pthread_attr_getaffinity and
3497         pthread_attr_setaffinity.
3498         * sysdeps/unix/sysv/linux/internaltypes.h (struct pthread_attr): Add
3499         cpuset element.
3500
3501 2003-07-15  Ulrich Drepper  <drepper@redhat.com>
3502
3503         * tst-tcancel-wrappers.sh: lseek and llseek are not cancelation points.
3504
3505 2003-07-14  Ulrich Drepper  <drepper@redhat.com>
3506
3507         * sysdeps/pthread/configure.in: Require CFI directives also for
3508         ppc and s390.
3509
3510 2003-07-15  Jakub Jelinek  <jakub@redhat.com>
3511
3512         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h (PSEUDO):
3513         Add cfi directives.
3514
3515 2003-07-12  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
3516
3517         * sysdeps/sh/tcb-offsets.sym: Add RESULT, TID, CANCELHANDLING and
3518         CLEANUP_JMP_BUF.
3519         * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Use more
3520         registers as variables.  Call __pthread_mutex_unlock_usercnt.
3521         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Likewise.
3522         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: Store TID
3523         not self pointer in __writer.  Compare with TID to determine
3524         deadlocks.
3525         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: Likewise.
3526         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S:
3527         Likewise.
3528         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S:
3529         Likewise.
3530         * sysdeps/unix/sysv/linux/sh/sem_wait.S: Add cancellation support.
3531         * sysdeps/unix/sysv/linux/sh/sem_timedwait.S: Likewise.
3532         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Define all the nice
3533         macros also when compiling librt.
3534
3535 2003-07-11  Jakub Jelinek  <jakub@redhat.com>
3536
3537         * Makefile (CFLAGS-pthread_once.c): Add -fexceptions
3538         -fasynchronous-unwind-tables.
3539         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h
3540         (PSEUDO): Add cfi directives.
3541         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h (PSEUDO):
3542         Likewise.
3543         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h (PSEUDO):
3544         Likewise.
3545
3546 2003-07-08  Jakub Jelinek  <jakub@redhat.com>
3547
3548         * pthreadP.h (__pthread_unwind_next, __pthread_register_cancel,
3549         __pthread_unregister_cancel): Add prototypes and hidden_proto.
3550         * unwind.c (__pthread_unwind_next): Add hidden_def.
3551         * cleanup.c (__pthread_register_cancel, __pthread_unregister_cancel):
3552         Likewise.
3553         * sysdeps/unix/sysv/linux/i386/i486/sem_wait.S (__new_sem_wait):
3554         Use HIDDEN_JUMPTARGET to jump to __pthread_unwind.
3555         * sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S (sem_timedwait):
3556         Likewise.
3557         * sysdeps/unix/sysv/linux/x86_64/sem_wait.S (sem_wait): Likewise.
3558         * sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S (sem_timedwait):
3559         Likewise.
3560         * sysdeps/unix/sysv/linux/i386/pthread_once.S (__pthread_once): Use
3561         HIDDEN_JUMPTARGET to call __pthread_register_cancel,
3562         __pthread_unregister_cancel and __pthread_unwind_next.
3563
3564 2003-07-04  Jakub Jelinek  <jakub@redhat.com>
3565
3566         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h (PSEUDO): Use
3567         different symbol for the cancellation syscall wrapper and
3568         non-cancellation syscall wrapper.
3569         (PSEUDO_END): Define.
3570
3571 2003-07-05  Richard Henderson  <rth@redhat.com>
3572
3573         * sysdeps/alpha/elf/pt-initfini.c: Avoid .ent/.end.
3574         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h (lll_futex_wait,
3575         lll_futex_timed_wait, lll_futex_wake, lll_futex_requeue): On success
3576         return actual return value from the syscall, not 0.
3577
3578 2003-07-07  Ulrich Drepper  <drepper@redhat.com>
3579
3580         * descr.h (struct pthread): Add pid field.
3581         * allocatestack.c (allocate_stack): Initialize pid field in descriptor.
3582         (__reclaim_stacks): Likewise.
3583         * init.c (sigcancel_handler): If __ASSUME_CORRECT_SI_PID is defined
3584         also check for PID of the signal source.
3585         (__pthread_initialize_minimal_internal): Also initialize pid field
3586         of initial thread's descriptor.
3587         * pthread_cancel.c: Use tgkill instead of tkill if possible.
3588         * sysdeps/unix/sysv/linux/fork.c: Likewise.
3589         * sysdeps/unix/sysv/linux/pt-raise.c: Likewise.
3590         * sysdeps/unix/sysv/linux/pthread_kill.c: Likewise.
3591         * sysdeps/unix/sysv/linux/raise.c: Likewise.
3592
3593 2003-07-05  Ulrich Drepper  <drepper@redhat.com>
3594
3595         * sysdeps/pthread/bits/libc-lock.h (__libc_cleanup_push): Renamed.
3596         Fix use of parameter.
3597         (__libc_cleanup_pop): Likewise.
3598
3599 2003-07-04  Ulrich Drepper  <drepper@redhat.com>
3600
3601         * init.c (sigcancel_handler): Change parameters to match handler
3602         for SA_SIGACTION.  Check signal number and code to recognize
3603         invalid invocations.
3604
3605 2003-07-03  Roland McGrath  <roland@redhat.com>
3606
3607         * sysdeps/ia64/td_ta_map_lwp2thr.c (td_ta_map_lwp2thr):
3608         Apply sizeof (struct pthread) bias to r13 value.
3609
3610 2003-07-03  Ulrich Drepper  <drepper@redhat.com>
3611
3612         * sysdeps/pthread/configure.in: Require CFI directives.
3613
3614         * sysdeps/pthread/librt-cancellation.c (__pthread_unwind): Remove
3615         definition.
3616         * pthreadP.h (__pthread_unwind): Add hidden_proto if used in
3617         libpthread compilation.
3618         * unwind.c (__pthread_unwind): Add hidden_def.
3619         * Versions (libpthread) [GLIBC_PRIVATE]: Add __pthread_unwind.
3620
3621 2003-07-01  Ulrich Drepper  <drepper@redhat.com>
3622
3623         * libc-cancellation.c (__libc_cleanup_routine): Define.
3624         * sysdeps/pthread/bits/libc-lock.h (__pthread_cleanup_push): Define.
3625         (__pthread_cleanup_pop): Define.
3626
3627 2003-07-01  Richard Henderson  <rth@redhat.com>
3628
3629         * sysdeps/alpha/elf/pt-initfini.c: New file.
3630         * sysdeps/alpha/pthread_spin_lock.S: New file.
3631         * sysdeps/alpha/pthread_spin_trylock.S: New file.
3632         * sysdeps/alpha/pthreaddef.h: New file.
3633         * sysdeps/alpha/td_ta_map_lwp2thr.c: New file.
3634         * sysdeps/alpha/tls.h: New file.
3635         * sysdeps/unix/sysv/linux/alpha/Makefile: New file.
3636         * sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h: New file.
3637         * sysdeps/unix/sysv/linux/alpha/bits/semaphore.h: New file.
3638         * sysdeps/unix/sysv/linux/alpha/createthread.c: New file.
3639         * sysdeps/unix/sysv/linux/alpha/fork.c: New file.
3640         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: New file.
3641         * sysdeps/unix/sysv/linux/alpha/pt-vfork.S: New file.
3642         * sysdeps/unix/sysv/linux/alpha/pthread_once.c: New file.
3643         * sysdeps/unix/sysv/linux/alpha/sem_post.c: New file.
3644         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: New file.
3645
3646 2003-07-01  Ulrich Drepper  <drepper@redhat.com>
3647
3648         * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Add correct
3649         cleanup support and unwind info.
3650
3651 2003-06-30  Ulrich Drepper  <drepper@redhat.com>
3652
3653         * sysdeps/unix/sysv/linux/i386/pthread_once.S (__pthread_once):
3654         Use correct cleanup handler registration.  Add unwind info.
3655         * sysdeps/unix/sysv/linux/unwindbuf.sym: New file.
3656         * sysdeps/unix/sysv/linux/Makefile: Add rule to build unwindbuf.h.
3657         * tst-once3.c: Add cleanup handler and check it is called.
3658         * tst-once4.c: Likewise.
3659         * tst-oncex3.c: New file.
3660         * tst-oncex4.c: New file.
3661         * Makefile: Add rules to build and run tst-oncex3 and tst-oncex4.
3662
3663 2003-06-29  Ulrich Drepper  <drepper@redhat.com>
3664
3665         * sysdeps/pthread/configure.in: Check for C cleanup handling in gcc.
3666
3667 2003-06-27  Ulrich Drepper  <drepper@redhat.com>
3668
3669         * tst-cancel4.c (tf_msgrcv): Use IPC_PRIVATE in msgget call.
3670         (tf_msgsnd): Likewise.
3671
3672         * tst-cancel4.c (tf_msgrcv): Strengthen test against valid
3673         premature returns a bit more.
3674
3675 2003-06-26  Ulrich Drepper  <drepper@redhat.com>
3676
3677         * sysdeps/pthread/librt-cancellation.c: Move __pthread_unwind
3678         definition to the front.
3679
3680         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Rename
3681         the cleanup functions to make the names unique.  Fix dwarf opcode
3682         un unwind table.
3683         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Rename cleanup
3684         functions to make the names unique.  Fix CFA offset for two blocks.
3685
3686 2003-06-25  Ulrich Drepper  <drepper@redhat.com>
3687
3688         * sysdeps/pthread/pthread.h (class __pthread_cleanup_class): Add
3689         missing closing braces.
3690         Patch by Christophe Saout <christophe@saout.de>.
3691
3692 2003-06-24  Roland McGrath  <roland@redhat.com>
3693
3694         * pthread_mutex_trylock.c (__pthread_mutex_trylock): Typo fix.
3695
3696 2003-06-24  Ulrich Drepper  <drepper@redhat.com>
3697
3698         * sysdeps/unix/sysv/linux/ia64/bits/posix_opt.h: New file.
3699         * sysdeps/unix/sysv/linux/x86_64/bits/posix_opt.h: New file.
3700
3701         * pthreadP.h: Declare __find_thread_by_id.
3702         * allocatestack.c [HP_TIMING_AVAIL]: Define __find_thread_by_id.
3703         * pthread_clock_gettime.c: Allow using other thread's clock.
3704         * pthread_clock_settime.c: Likewise.
3705         * sysdeps/pthread/pthread_getcpuclockid.c: Likewise.
3706         * Makefile: Add rules to build and run tst-clock2.
3707         * tst-clock2.c: New file.
3708
3709 2003-06-23  Ulrich Drepper  <drepper@redhat.com>
3710
3711         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Rewrite
3712         to use exception-based cleanup handler.
3713         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Likewise.
3714
3715         * tst-cond8.c (ch): Announce that we are done.
3716
3717         * pthreadP.h (__pthread_mutex_cond_lock): Mark with internal_function.
3718
3719         * tst-cancel17.c (tf): Retry aio_suspend in case of EINTR.
3720         Also test aio_suspend with timeout value.
3721
3722 2003-06-22  Ulrich Drepper  <drepper@redhat.com>
3723
3724         * pthreadP.h: Mark __pthread_mutex_unlock_usercnt also hidden.
3725         * pthread_mutex_unlock.c (__pthread_mutex_unlock_usercnt): Add
3726         attribute_hidden.
3727
3728         * pthreadP.h (__pthread_mutex_init_internal): Mark hidden.
3729         (__pthread_mutex_lock_internal): Likewise.
3730         (__pthread_mutex_unlock_internal): Likewise.
3731         (__pthread_mutex_unlock_usercnt): Declare.
3732         * pthread_mutex_destroy.c: Always fail if used in any way.
3733         * pthread_mutex_init.c: Update comment.
3734         * pthread_mutex_lock.c: If NO_INCR is not defined adjust __nusers.
3735         * pthread_mutex_timedlock.c: Adjust __nusers.
3736         * pthread_mutex_trylock.c: Adjust __nusers.
3737         * pthread_mutex_unlock.c: Old code is in __pthread_mutex_unlock_usercnt
3738         and public interfaces are wrapper with pass additional parameter.
3739         __pthread_mutex_unlock_usercnt does not adjust __nusers if second
3740         parameter zero.
3741         * tst-mutex8.c: New file.
3742         * Makefile (tests): Add tst-mutex8.
3743         * sysdeps/pthread/pthread_cond_timedwait.c: Call
3744         __pthread_mutex_unlock_usercnt.
3745         * sysdeps/pthread/pthread_cond_wait.c: Likewise.
3746         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Likewise.
3747         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Likewise.
3748         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: Likewise.
3749         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: Likewise.
3750         * sysdeps/unix/sysv/linux/pthread_mutex_cond_lock.c: Define NO_INCR.
3751         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h (pthread_mutex_t):
3752         Add __nusers.
3753         * sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h: Likewise.
3754         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Likewise.
3755         * sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Likewise.
3756         * sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h: Likewise.
3757         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: Likewise.
3758
3759         * pthread_mutex_lock.c: Don't store THREAD_ID in __owner, use TID.
3760         * pthread_mutex_timedlock.c: Likewise.
3761         * pthread_mutex_trylock.c: Adjust __nusers.
3762         * pthread_mutex_unlock.c: Compare with TID not THREAD_ID.
3763         * tst-mutex9.c: New file.
3764         * Makefile (tests): Add tst-mutex9.
3765         * sysdeps/i386/tls.h: Remove THREAD_ID definition.
3766         * sysdeps/ia64/tls.h: Likewise.
3767         * sysdeps/powerpc/tls.h: Likewise.
3768         * sysdeps/s390/tls.h: Likewise.
3769         * sysdeps/sh/tls.h: Likewise.
3770         * sysdeps/x86_64/tls.h: Likewise.
3771         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h (pthread_mutex_t):
3772         Change type of __owner.
3773         * sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h: Likewise.
3774         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Likewise.
3775         * sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Likewise.
3776         * sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h: Likewise.
3777         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: Likewise.
3778
3779 2003-06-19  Jakub Jelinek  <jakub@redhat.com>
3780
3781         * sysdeps/unix/sysv/linux/ia64/sem_post.c: Move to...
3782         * sysdeps/unix/sysv/linux/sem_post.c: ...here.
3783
3784         * sysdeps/unix/sysv/linux/sem_post.c: Move to...
3785         * sysdeps/unix/sysv/linux/powerpc/sem_post.c: ... here.  Pass nr + 1
3786         instead of nr to lll_futex_wake.  Only set errno and return -1
3787         if err < 0.
3788
3789         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h (lll_futex_wait,
3790         lll_futex_timed_wait, lll_futex_wake, lll_futex_requeue): On success
3791         return actual return value from the syscall, not 0.
3792
3793 2003-06-18  Ulrich Drepper  <drepper@redhat.com>
3794
3795         * tst-cancel4.c (tf_msgsnd): Don't always use 100 as the type,
3796         find a random value.
3797         (tf_msgrcv): Likewise.  Also don't report msgrcv returns if
3798         errno==EIDRM.
3799
3800         * sysdeps/unix/sysv/linux/timer_settime.c: Add prototype for
3801         compat_timer_settime.
3802         * sysdeps/unix/sysv/linux/timer_gettime.c: Add prototype for
3803         compat_timer_gettime.
3804         * sysdeps/unix/sysv/linux/timer_getoverr.c: Add prototype for
3805         compat_timer_getoverrun.
3806         * sysdeps/unix/sysv/linux/timer_delete.c: Add prototype for
3807         compat_timer_delete.
3808
3809         * pthread_mutex_destroy.c (__pthread_mutex_destroy): For
3810         error-checking mutex detect busy mutexes.
3811
3812 2003-06-17  Ulrich Drepper  <drepper@redhat.com>
3813
3814         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h (lll_mutex_lock):
3815         Add ax to clobber list.
3816         (lll_mutex_cond_lock): Likewise.
3817         (lll_mutex_unlock): Likewise.
3818         (lll_lock): Likewise.
3819         (lll_unlock): Likewise.
3820
3821         * Makefile: Add rules to build and run tst-cancel18 and tst-cancelx18.
3822         * tst-cancel18.c: New file.
3823         * tst-cancelx18.c: New file.
3824
3825         * tst-cancel4.c: Test connect, creat, msgrcv, msgsnd, sendmsg, sendto,
3826         and tcdrain.
3827
3828         * Makefile: Add rules to build and run tst-cancel17 and tst-cancel17x.
3829         * tst-cancel17.c: New file.
3830         * tst-cancelx17.c: New file.
3831
3832         * sysdeps/unix/sysv/linux/sigtimedwait.c: New file.
3833         * sysdeps/unix/sysv/linux/sigwait.c: New file.
3834         * sysdeps/unix/sysv/linux/sigwaitinfo.c: New file.
3835
3836         * tst-cancel4.c: Test open, close, pread, pwrite, fsync, and msync.
3837
3838 2003-06-16  Jakub Jelinek  <jakub@redhat.com>
3839
3840         * sysdeps/pthread/createthread.c (create_thread): Set
3841         header.multiple_threads unconditionally.
3842         * allocatestack.c (allocate_stack): Likewise.
3843         * descr.h (struct pthread): Add header.multiple_threads
3844         unconditionally.
3845         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h (CENABLE, CDISABLE):
3846         Define for librt.  #error if neither libpthread, libc nor librt.
3847         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h (CENABLE, CDISABLE):
3848         Likewise.
3849         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h (CENABLE,
3850         CDISABLE): Likewise.
3851         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h (CENABLE,
3852         CDISABLE): Likewise.
3853         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h (CENABLE,
3854         CDISABLE): Likewise.
3855         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h (CENABLE,
3856         CDISABLE): Likewise.  Access header.multiple_threads outside of
3857         libc and libpthread.
3858         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h (CENABLE, CDISABLE):
3859         Likewise.
3860         * sysdeps/x86_64/tls.h (tcbhead_t): Add multiple_threads.
3861         * sysdeps/x86_64/tcb-offsets.sym (MULTIPLE_THREADS_OFFSET): Define.
3862
3863 2003-06-17  Ulrich Drepper  <drepper@redhat.com>
3864
3865         * tst-cancel4.c: Add tests for the socket and signal functions, pause.
3866         Also test early cancellation before the thread reaches the cancellation
3867         point.
3868
3869         * Makefile: Compile forward.c with exceptions.
3870
3871         * sysdeps/unix/sysv/linux/sleep.c: New file.
3872
3873 2003-06-16  Ulrich Drepper  <drepper@redhat.com>
3874
3875         * Makefile: Add CFLAGS definition to compile function wrappers
3876         duplicated from libc with exceptions.
3877         * tst-cancel4.c: Also check cancellation handlers.
3878
3879         * Makefile: Add rules to build and run tst-cancel16 and
3880         tst-cancelx16.  Add missing CFLAGS definitions.
3881         * tst-cancel16.c: New file.
3882         * tst-cancelx16.c: New file.
3883
3884 2003-06-15  Ulrich Drepper  <drepper@redhat.com>
3885
3886         * sysdeps/unix/sysv/linux/i386/dl-sysdep.h
3887         (DL_SYSINFO_IMPLEMENTATION): Use CFI opcodes.
3888         * sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h
3889         (DL_SYSINFO_IMPLEMENTATION): Likewise.
3890
3891         * pthreadP.h (LIBC_CANCEL_ASYNC): Also define for librt.
3892         (LIBC_CANCEL_RESET): Likewise.
3893         Declare __librt_enable_asynccancel and __librt_disable_asynccancel.
3894         * sysdeps/pthread/Makefile (librt-sysdep_routines): Add
3895         librt-cancellation.
3896         (CFLAGS-libcrt-cancellation.c): Define.
3897         * sysdeps/pthread/librt-cancellation.c: New file.
3898         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Define all the nice
3899         macros also when compiling librt.
3900         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: Likewise.
3901         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: Likewise.
3902         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: Likewise.
3903         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
3904         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
3905         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
3906         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
3907
3908         * sysdeps/unix/sysv/linux/timer_create.c: Add prototype for
3909         compat_timer_create.
3910
3911 2003-06-14  Ulrich Drepper  <drepper@redhat.com>
3912
3913         * sysdeps/pthread/posix-timer.h (timespec_compare): Always inline.
3914
3915         * sysdeps/unix/sysv/linux/fork.h: Add libc_hidden_proto for
3916         __register_atfork.
3917         * sysdeps/unix/sysv/linux/register-atfork.c (__register_atfork):
3918         Add libc_hidden_def.
3919
3920 2003-06-13  Roland McGrath  <roland@redhat.com>
3921
3922         * sysdeps/x86_64/td_ta_map_lwp2thr.c (td_ta_map_lwp2thr): Pass FS
3923         constant from <sys/reg.h> to ps_get_thread_area, not register contents.
3924
3925 2003-06-11  Ulrich Drepper  <drepper@redhat.com>
3926
3927         * allocatestack.c (queue_stack): Always inline.
3928         * ptreadhP.h (__do_cancel): Likewise.
3929
3930 2003-06-10  Jakub Jelinek  <jakub@redhat.com>
3931
3932         * sysdeps/unix/sysv/linux/s390/sem_timedwait.c (sem_timedwait): Fix
3933         a typo.
3934
3935 2003-06-10  Ulrich Drepper  <drepper@redhat.com>
3936
3937         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S
3938         (__pthread_cond_signal): Remove incorrect second addition for
3939         cond_lock!=0.
3940
3941 2003-06-09  Ulrich Drepper  <drepper@redhat.com>
3942
3943         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S
3944         (__pthread_cond_signal): Use correct futex pointer in
3945         __lll_mutex_lock_wait call.
3946
3947         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S
3948         (__pthread_cond_signal): Some more tweaks to handle cond_lock!=0.
3949
3950 2003-06-08  Ulrich Drepper  <drepper@redhat.com>
3951
3952         * sysdeps/unix/sysv/linux/s390/sem_wait.c (__new_sem_wait): Make
3953         cancelable.
3954         * sysdeps/unix/sysv/linux/s390/sem_timedwait.c (sem_timedwait):
3955         Likewise.
3956
3957         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Remove
3958         hand-written CFI generation code.  Since ENTRY/END also initiated
3959         CFI frames this caused two CFI sets to be generated.
3960
3961 2003-06-07  Ulrich Drepper  <drepper@redhat.com>
3962
3963         * cleanup_routine.c: New file.
3964         * Versions (libpthread) [GLIBC_2.3.3]: Add __pthread_cleanup_routine.
3965         * sysdeps/pthread/pthread.h: Add support for fully exception-based
3966         cleanup handling.
3967         * Makefile (libpthread-routines): Add cleanup_routine.
3968         Add more CFLAGS variables to compile with exceptions.  Add comments
3969         why which file needs unwind tables.
3970         (tests) [have-forced-unwind==yes]: Add tst-cancelx* and tst-cleanupx*
3971         tests.
3972         * tst-cancelx1.c: New file.
3973         * tst-cancelx2.c: New file.
3974         * tst-cancelx3.c: New file.
3975         * tst-cancelx4.c: New file.
3976         * tst-cancelx5.c: New file.
3977         * tst-cancelx6.c: New file.
3978         * tst-cancelx7.c: New file.
3979         * tst-cancelx8.c: New file.
3980         * tst-cancelx9.c: New file.
3981         * tst-cancelx10.c: New file.
3982         * tst-cancelx11.c: New file.
3983         * tst-cancelx12.c: New file.
3984         * tst-cancelx13.c: New file.
3985         * tst-cancelx14.c: New file.
3986         * tst-cancelx15.c: New file.
3987         * tst-cleanupx0.c: New file.
3988         * tst-cleanupx0.expect: New file.
3989         * tst-cleanupx1.c: New file.
3990         * tst-cleanupx2.c: New file.
3991         * tst-cleanupx3.c: New file.
3992
3993         * tst-cleanup0.c: Make standard compliant.
3994         * tst-cleanup1.c: Likewise.
3995
3996         * sysdeps/unix/sysv/linux/sem_timedwait.c: Add cancellation support.
3997         * sysdeps/unix/sysv/linux/sem_wait.c: Likewise.
3998         * sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: Likewise.
3999         * sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: Likewise.
4000         * sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: Likewise.
4001         * sysdeps/unix/sysv/linux/x86_64/sem_wait.S: Likewise.
4002         * sysdeps/i386/tcb-offsets.sym: Add RESULT, CANCELHANDLING, and
4003         CLEANUP_JMP_BUF.
4004         * sysdeps/x86_64/tcb-offsets.sym: Likewise.
4005         * tst-cancel12.c: New file.
4006         * tst-cancel13.c: New file.
4007         * tst-cancel14.c: New file.
4008         * tst-cancel15.c: New file.
4009         * Makefile (tests): Add tst-cancel12, tst-cancel13, tst-cancel14,
4010         and tst-cancel15.
4011
4012         * tst-cancel1.c: Add some comments.
4013
4014         * sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: Compute relative
4015         timeout correctly.
4016
4017 2003-06-06  Ulrich Drepper  <drepper@redhat.com>
4018
4019         * Makefile (CFLAGS-pthread_cancel.c): Define.
4020
4021 2003-06-05  Ulrich Drepper  <drepper@redhat.com>
4022
4023         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h (pthread_rwlock_t):
4024         Change type of __writer element to int.
4025         * sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h: Likewise.
4026         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Likewise.
4027         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Likewise.
4028         * sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Likewise.
4029         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: Likewise.
4030         * sysdeps/i386/tcb-offsets.sym: Replace SELF entry with TID entry.
4031         * sysdeps/x86_64/tcb-offsets.sym: Likewise.
4032         * pthread_rwlock_trywrlock.c: Store TID not self pointer in __writer.
4033         Compare with TID to determine deadlocks.
4034         * sysdeps/pthread/pthread_rwlock_rdlock.c: Likewise.
4035         * sysdeps/pthread/pthread_rwlock_timedrdlock.c: Likewise.
4036         * sysdeps/pthread/pthread_rwlock_timedwrlock.: Likewise.
4037         * sysdeps/pthread/pthread_rwlock_wrlock.c: Likewise.
4038         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: Likewise.
4039         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
4040         Likewise.
4041         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
4042         Likewise.
4043         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: Likewise.
4044         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: Likewise.
4045         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S:
4046         Likewise.
4047         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S:
4048         Likewise.
4049         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: Likewise.
4050         * Makefile (tests): Add tst-rwlock12.
4051         * tst-rwlock12.c: New file.
4052
4053 2003-06-05  Jakub Jelinek  <jakub@redhat.com>
4054
4055         * sysdeps/unix/sysv/linux/lowlevellock.c (__lll_lock_wait,
4056         __lll_timedlock_wait, lll_unlock_wake_cb, __lll_timedwait_tid):
4057         Remove bogus hidden_proto.
4058         * sysdeps/unix/sysv/linux/s390/libc-lowlevellock.c (___lll_lock):
4059         Likewise.
4060         * sysdeps/unix/sysv/linux/s390/lowlevellock.c (___lll_lock,
4061         lll_unlock_wake_cb, ___lll_timedwait_tid): Likewise.
4062         * sysdeps/unix/sysv/linux/s390/lowlevelmutex.c (___lll_mutex_lock,
4063         ___lll_mutex_timedlock): Likewise.
4064
4065 2003-06-04  Ulrich Drepper  <drepper@redhat.com>
4066
4067         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S
4068         (__pthread_cond_signal): Add some code to eventually handle
4069         cond_lock!=0.
4070
4071 2003-06-01  Ulrich Drepper  <drepper@redhat.com>
4072
4073         * Makefile (tests): Add tst-exec4.
4074         (tst-exec4-ARGS): Define.
4075         * tst-exec4.c: New file.
4076
4077 2003-05-31  Ulrich Drepper  <drepper@redhat.com>
4078
4079         * sysdeps/unix/sysv/linux/lowlevellock.c (__lll_timedlock_wait):
4080         Also fail if tv_nsec < 0.
4081         (__lll_timedwait_tid): Likewise.
4082         * sysdeps/unix/sysv/linux/sem_timedwait.c (sem_timedwait): Likewise.
4083         * sysdeps/unix/sysv/linux/i386/lowlevellock.h (lll_timedwait_tid):
4084         Likewise.
4085         * sysdeps/unix/sysv/linux/s390/lowlevellock.c (___lll_timedwait_tid):
4086         Likewise.
4087         * sysdeps/unix/sysv/linux/s390/lowlevelmutex.c (__lll_mutex_timedlock):
4088         Likewise.
4089         * sysdeps/unix/sysv/linux/s390/sem_timedwait.c (sem_timedwait):
4090         Likewise.
4091         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h (lll_timedwait_tid):
4092         Likewise.
4093         * sysdeps/unix/sysv/linux/sh/lowlevellock.h (lll_timedwait_tid):
4094         Likewise.
4095
4096         * Makefile (tests): Add tst-sem8 and tst-sem9.
4097         * tst-sem8.c: New file.
4098         * tst-sem9.c: New file.
4099         * sem_open.c: Fix creation of in_use record if the file exists but
4100         no internal record.
4101
4102         * posix-timer.h: Remove old, unused timer_id2ptr and timer_ptr2id
4103         definitions.
4104
4105         * sysdeps/pthread/timer_create.c (timer_create): In case
4106         evp==NULL, assign timer ID to sival_ptr.
4107
4108         * descr.h (struct pthread_unwind_buf): Change type of prev element to
4109         struct pthread_unwind_buf *.
4110         (struct pthread): Likewise for cleanup_jmp_buf element.
4111
4112         * cleanup.c (__pthread_register_cancel): Add cast to avoid warning.
4113         * cleanup_defer.c (__pthread_register_cancel_defer): Likewise.
4114         * unwind.c (__pthread_unwind_next): Likewise.
4115
4116 2003-05-30  Ulrich Drepper  <drepper@redhat.com>
4117
4118         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h
4119         (lll_futex_timed_wait): Use int for futex value parameter.
4120         (lll_futex_wake): Likewise.
4121         (lll_futex_requeue): Likewise.
4122
4123         * sysdeps/unix/sysv/linux/lowlevellock.c (__lll_lock_wait):
4124         Replace one memory operation with one register operation.
4125
4126         * tst-join4.c (do_test): Fix error message.
4127
4128         * tst-rwlock6.c (do_test): Use correct format specifier.
4129
4130         * sysdeps/unix/sysv/linux/i386/i486/lowlevelmutex.S
4131         (__lll_mutex_lock_wait): Replace one memory operation with one
4132         register operation.
4133         * sysdeps/unix/sysv/linux/x86_64/lowlevelmutex.S
4134         (__lll_mutex_lock_wait): Likewise.
4135
4136         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h
4137         (__lll_mutex_cond_lock): Add one to value parameter of
4138         __lll_lock_wait to reflect reality in the futex syscall.
4139         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h
4140         (lll_mutex_cond_lock): Likewise.
4141
4142 2003-05-30  Jakub Jelinek  <jakub@redhat.com>
4143
4144         * sysdeps/unix/sysv/linux/s390/lowlevellock.h (__lll_mutex_cond_lock):
4145         New function.
4146         (lll_mutex_cond_lock): Define.
4147
4148 2003-05-29  Ulrich Drepper  <drepper@redhat.com>
4149
4150         * Makefile (tests): Add tst-signal6.
4151         * tst-signal6.c: New file.
4152
4153         * sysdeps/unix/sysv/linux/s390/lowlevellock.h
4154         (__lll_mutex_unlock_force): New function
4155         (lll_mutex_unlock_force): Use __lll_mutex_unlock_force.
4156
4157         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h
4158         (__lll_mutex_unlock_force): New function.
4159         (lll_mutex_unlock_force): Use __lll_mutex_unlock_force.
4160
4161         * tst-rwlock7.c (do_test): Use correct format specifier.
4162
4163         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h (lll_futex_requeue):
4164         Find break parameter in correct asm argument.
4165
4166 2003-05-27  Jakub Jelinek  <jakub@redhat.com>
4167
4168         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h (lll_futex_clobbers):
4169         Remove out4.
4170         (lll_futex_requeue): Fix __o3 constraint, return negative errno if
4171         error occured.
4172         * sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h (pthread_cond_t):
4173         Add __mutex.
4174         * sysdeps/unix/sysv/linux/s390/lowlevellock.h (FUTEX_REQUEUE,
4175         lll_futex_requeue, lll_mutex_unlock_force): Define.
4176
4177 2003-05-30  Jakub Jelinek  <jakub@redhat.com>
4178
4179         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
4180         (pthread_cond_t): Add __mutex.
4181         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h (FUTEX_REQUEUE,
4182         lll_futex_requeue, lll_mutex_unlock_force): Define.
4183
4184 2003-05-28  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
4185
4186         * sysdeps/sh/tcb-offsets.sym: Define MUTEX_FUTEX.
4187         * sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h (pthread_cond_t):
4188         Add __mutex field.
4189         * sysdeps/unix/sysv/linux/sh/lowlevellock.h (SYSCALL_WITH_INST_PAD):
4190         Define.
4191         (lll_futex_wait, lll_futex_wake): Define.
4192         * sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h: New file.
4193         * sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: Try using
4194         FUTEX_REQUEUE instead of FUTEX_WAIT.
4195         * sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: Likewise.
4196         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Remember
4197         mutex which was used in condvar structure.  Call
4198         __pthread_mutex_cond_lock instead of __pthread_mutex_lock_internal.
4199         * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Likewise.
4200
4201         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: Don't
4202         include tcb-offsets.h.  Read wakeup value in locked region.
4203         Use the value of gbr register as THREAD_ID.
4204         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: Likewise.
4205         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S: Likewise.
4206         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S: Likewise.
4207
4208         * sysdeps/unix/sysv/linux/sh/sem_trywait.S: Remove futex related
4209         macros.
4210
4211 2003-05-28  Ulrich Drepper  <drepper@redhat.com>
4212
4213         * sysdeps/pthread/pthread_cond_broadcast.c
4214         (__pthread_cond_broadcast): Fix typo: MAX_INT -> INT_MAX.
4215
4216 2003-05-26  Ulrich Drepper  <drepper@redhat.com>
4217
4218         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S: Fix
4219         typo in register name.
4220         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S: Use parameters
4221         correctly.  Actually use requeue.  Little optimization.
4222         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: Store
4223         mutex address early.  Handle cancellation state as 32-bit value.
4224         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: Likewise.
4225         Remove unnecessary label.
4226
4227 2003-05-25  Ulrich Drepper  <drepper@redhat.com>
4228
4229         * sysdeps/pthread/pthread_cond_broadcast.c: Try using FUTEX_REQUEUE
4230         instead of FUTEX_WAIT.
4231         * sysdeps/pthread/pthread_cond_signal.c: Likewise.
4232         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S: Likewise.
4233         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S: Likewise.
4234         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S: Likewise.
4235         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S: Likewise.
4236         * sysdeps/pthread/pthread_cond_timedwait.c: Remember mutex which was
4237         used in condvar structure.  Call __pthread_mutex_cond_lock instead
4238         of __pthread_mutex_lock_internal.
4239         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Likewise.
4240         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: Likewise.
4241         * sysdeps/pthread/pthread_cond_wait.c: Likewise.
4242         (__condvar_cleanup): Always call __pthread_mutex_cond_lock.
4243         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Likewise.
4244         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: Likewise.
4245         * sysdeps/unix/sysv/linux/Makefile (libpthread-sysdep_routines):
4246         Add pthread_mutex_cond_lock.
4247         * sysdeps/unix/sysv/linux/lowlevelcond.sym: Add dep_mutex.
4248         * sysdeps/unix/sysv/linux/pthread_cond_mutex_lock.c: New file.
4249         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Define
4250         lll_mutex_cond_lock.
4251         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: Likewise.
4252         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
4253         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h (pthread_cond_t):
4254         Add __mutex field.
4255         * sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h: Likewise.
4256         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: Likewise.
4257
4258         * sysdeps/i386/tcb-offsets.sym: Define MUTEX_FUTEX.
4259         * sysdeps/x86_64/tcb-offsets.sym: Likewise.
4260
4261         * pthreadP.h: Declare __pthread_mutex_cond_lock.
4262         * pthread_mutex_lock.c: Define LLL_MUTEX_LOCK if not already defined.
4263         Use it instead of lll_mutex_lock.  If __pthread_mutex_lock is a
4264         macro don't define aliases.
4265
4266         * cancellation.c: Remove __pthread_enable_asynccancel_2.
4267         * pthreadP.h: Remove declaration of __pthread_enable_asynccancel_2.
4268         * sysdeps/pthread/pthread_cond_timedwait.c: Use
4269         __pthread_enable_asynccancel instead of __pthread_enable_asynccancel_2.
4270         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Likewise.
4271         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: Likewise.
4272         * sysdeps/pthread/pthread_cond_wait.c: Likewise.
4273         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Likewise.
4274         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: Likewise.
4275
4276 2003-05-17  Ulrich Drepper  <drepper@redhat.com>
4277
4278         * sem_open.c: Fix one endless loop.  Implement correct semantics
4279         wrt opening the same semaphore more then once.
4280         * sem_close.c: Adjust for sem_open change.
4281         * semaphoreP.h: Include <semaphore.h>.  Define struct inuse_sem.
4282         Declare __sem_mappings, __sem_mappings_lock, __sem_search.
4283         * Makefile (tests): Add tst-sem7.
4284         * tst-sem7.c: New file.
4285
4286 2003-05-16  Roland McGrath  <roland@redhat.com>
4287
4288         * sysdeps/unix/sysv/linux/register-atfork.c (libc_freeres_fn): Fix
4289         uninitialized variable braino.
4290
4291 2003-05-16  Ulrich Drepper  <drepper@redhat.com>
4292
4293         * sysdeps/unix/sysv/linux/timer_gettime.c (timer_gettime): Correct
4294         test for syscall availability.
4295
4296         * sysdeps/unix/sysv/linux/timer_settime.c (timer_settime): Set
4297         __no_posix_timers to -1 if the syscalls don't exist.
4298
4299         * pthread_join.c (pthread_join): Set tid field of the joined
4300         thread to -1.  This isn't necessary but helps to recognize some
4301         error conditions with almost no cost.
4302
4303         * allocatestack.c (FREE_P): Also negative values indicate an
4304         unused stack.
4305
4306         * unwind.c: Include <unistd.h>.
4307
4308 2003-05-14  Ulrich Drepper  <drepper@redhat.com>
4309
4310         * Makefile ($(objpfx)$(multidir)): Add rule to create the directory.
4311
4312 2003-05-14  Jakub Jelinek  <jakub@redhat.com>
4313
4314         * Makefile (crti-objs, crtn-objs): New variables.
4315         (omit-deps, extra-objs): Add crtn.
4316         ($(objpfx)libpthread.so): Depend on both crti and crtn
4317         and links to them in multidir.
4318         ($(objpfx)crtn.S, $(objpfx)crtn.o): New rules.
4319
4320 2003-05-12  Steven Munroe  <sjmunroe@us.ibm.com>
4321
4322         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h
4323         (lll_mutex_unlock): Use atomic_exchange_rel.
4324
4325 2003-05-11  Ulrich Drepper  <drepper@redhat.com>
4326
4327         * cond-perf.c (cons): Add missing locking around setting of alldone.
4328
4329 2003-05-10  Ulrich Drepper  <drepper@redhat.com>
4330
4331         * sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: Remove futex
4332         related macros.
4333         * sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: Likewise.
4334
4335 2003-05-09  Ulrich Drepper  <drepper@redhat.com>
4336
4337         * tst-sem6.c: New file.
4338         * Makefile (tests): Add tst-sem6.
4339
4340         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h (___lll_mutex_unlock):
4341         Use atomic_exchange_rel instead of atomic_exchange.
4342         * sysdeps/unix/sysv/linux/lowlevellock.c (lll_unlock_wake_cb):
4343         Likewise.
4344
4345         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Improve quality of
4346         code for lll_futex_wait and lll_futex_wake in static apps.  Use
4347         vsyscall is possible.
4348
4349         * sysdeps/unix/sysv/linux/pthread_getaffinity.c: New file.
4350         * sysdeps/unix/sysv/linux/pthread_setaffinity.c: New file.
4351         * sysdeps/pthread/pthread.h: Declare pthread_getaffinity_np and
4352         pthread_setaffinity_np.
4353         * Versions [libpthread] (GLIBC_2.3.3): Add pthread_getaffinity_np
4354         and pthread_setaffinity_np.
4355         * Makefile (libpthread-routines): Add pthread_getaffinity and
4356         pthread_setaffinity.
4357
4358         * allocatestack.c (allocate_stack): If ARCH_RETRY_MMAP is defined,
4359         use it in case mmap to allocate the stack fails.
4360         * sysdeps/unix/sysv/linux/x86_64/Makefile: Don't define
4361         ARCH_MAP_FLAGS here.
4362         * sysdeps/x86_64/pthreaddef.h: Define ARCH_MAP_FLAGS and
4363         ARCH_RETRY_MMAP.
4364
4365 2003-05-08  Ulrich Drepper  <drepper@redhat.com>
4366
4367         * sysdeps/unix/sysv/linux/fork.c: Complete rewrite of the atfork
4368         handler implementation.  It is now lockless in fork().
4369         * sysdeps/unix/sysv/linux/register-atfork.c: Likewise.
4370         * sysdeps/unix/sysv/linux/unregister-atfork.c: Likewise.
4371         * sysdeps/unix/sysv/linux/fork.h: Don't include <link.h>.  Don't
4372         declare the __fork_*_lists.
4373         (struct fork_handler): Include pointers to all three functions.
4374         Add next, refcntr and need_signal elements.
4375         (__fork_handlers): New declaration.
4376         (__register_atfork_malloc): Remove declaration.
4377         (HAVE_register_atfork_malloc): Remove definition.
4378         * sysdeps/unix/sysv/linux/libc_pthread_init.c: Remove
4379         __pthread_child_handler variable.
4380         (__libc_pthread_init): Use __register_atfork instead of explicitly
4381         adding to the list.
4382         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Define lll_futex_wait
4383         and lll_futex_wake.
4384         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
4385
4386         * unwind.c (unwind_cleanup): Print error message and then abort.  This
4387         function must never be reached.
4388
4389         * cond-perf.c: New file.
4390
4391 2003-05-05  Ulrich Drepper  <drepper@redhat.com>
4392
4393         * sysdeps/i386/tls.h (TLS_INIT_TP): Include \n in error message.
4394
4395 2003-05-04  Roland McGrath  <roland@redhat.com>
4396
4397         * Makefile ($(objpfx)../libc.so): New target.
4398
4399 2003-05-02  Ulrich Drepper  <drepper@redhat.com>
4400
4401         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
4402         (pthread_condattr_t): Size is only an int, don't use long for
4403         alignment.
4404         (pthread_mutexattr_t): Likewise.
4405         * sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h: Likewise.
4406         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: Likewise.
4407         * sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Likewise.
4408
4409 2003-05-01  Ulrich Drepper  <drepper@redhat.com>
4410
4411         * sysdeps/i386/tls.h: Define THREAD_ID.
4412         * sysdeps/ia64/tls.h: Likewise.
4413         * sysdeps/powerpc/tls.h: Likewise.
4414         * sysdeps/s390/tls.h: Likewise.
4415         * sysdeps/sh/tls.h: Likewise.
4416         * sysdeps/x86_64/tls.h: Likewise.
4417         * pthread_mutex_lock.c: Use THREAD_ID instead of THREAD_SELF to
4418         record ownership.
4419         * pthread_mutex_timedlock.c: Likewise.
4420         * pthread_mutex_trylock.c: Likewise.
4421         * pthread_mutex_unlock.c: Likewise.
4422         * pthread_rwlock_trywrlock.c: Likewise.
4423         * sysdeps/pthread/pthread_rwlocklock_rdlock.c: Likewise.
4424         * sysdeps/pthread/pthread_rwlock_timedrdlock.c: Likewise.
4425         * sysdeps/pthread/pthread_rwlock_timedwrlock.c: Likewise.
4426         * sysdeps/pthread/pthread_rwlock_wrlock.c: Likewise.
4427
4428         * sysdeps/pthread/createthread.c (create_thread): Use CLONE_SYSVSEM
4429         flag.
4430
4431 2003-04-29  Jakub Jelinek  <jakub@redhat.com>
4432
4433         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h
4434         (__SIZEOF_PTHREAD_COND_T): Define to 48.
4435         (pthread_rwlock_t): Add 16 bytes of pad instead of 8 before __flags.
4436         * sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h (pthread_cond_t):
4437         Make __align long long instead of long.
4438         (pthread_rwlock_t): Formatting.
4439         * sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h
4440         (pthread_rwlock_t): Formatting.
4441         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
4442         (pthread_cond_t): Make __align long long instead of long.
4443         (pthread_rwlock_t): Move __flags field to the same position as in
4444         linuxthreads.
4445
4446 2003-04-30  Ulrich Drepper  <drepper@redhat.com>
4447
4448         * tst-rwlock6.c (do_test): Use correct printf format specifiers.
4449         * tst-rwlock7.c (do_test): Likewise.
4450
4451 2003-04-26  Roland McGrath  <roland@redhat.com>
4452
4453         * Makefile ($(test-modules)): Depend on $(common-objpfx)shlib.lds.
4454
4455 2003-04-22  Jakub Jelinek  <jakub@redhat.com>
4456
4457         * allocatestack.c (TLS_TPADJ): Add TLS_PRE_TCB_SIZE instead of
4458         sizeof (struct pthread).
4459         (allocate_stack): Subtract TLS_PRE_TCB_SIZE bytes instead of
4460         1 struct pthread.
4461         * sysdeps/powerpc/tls.h (TLS_INIT_TCB_SIZE, TLS_TCB_SIZE): Define
4462         to 0.
4463         (TLS_INIT_TCB_ALIGN, TLS_TCB_ALIGN): Define to alignment of
4464         struct pthread.
4465         (TLS_PRE_TCB_SIZE): Increase to cover tcbhead_t preceeded by pad
4466         to 32-bit bytes.
4467         (INSTALL_DTV, GET_DTV, THREAD_DTV): tcbhead_t is immediately before
4468         tcbp.
4469         (TLS_INIT_TP, THREAD_SELF, INIT_THREAD_SELF): Don't add TLS_TCB_SIZE
4470         unneccessarily.
4471         (NO_TLS_OFFSET): Define.
4472         * sysdeps/unix/sysv/linux/powerpc/createthread.c (TLS_VALUE): Don't
4473         add TLS_TCB_SIZE unnecessarily.
4474
4475 2003-04-22  Roland McGrath  <roland@redhat.com>
4476
4477         * Makeconfig (shared-thread-library): Reverse link order to work
4478         around linker bug.
4479
4480 2003-04-22  Ulrich Drepper  <drepper@redhat.com>
4481
4482         * semaphore.h: Fix typo in comment.
4483
4484 2003-04-21  Ulrich Drepper  <drepper@redhat.com>
4485
4486         * sysdeps/pthread/sigfillset.c: New file.
4487
4488         * init.c (__pthread_initialize_minimal): Don't block SIGTIMER.
4489         * pthreadP.h: Make SIGTIMER and SIGCANCEL the same.
4490         * sysdeps/pthread/pthread_sigmask.c: Remove handling of SIGTIMER.
4491         * sysdeps/pthread/sigaction.c: Likewise.
4492         * sysdeps/pthread/sigprocmask.c: New file.
4493         * sysdeps/unix/sysv/linux/allocrtsig.c (current_rtmin): Define as
4494         __SIGRTMIN+1.
4495         * sysdeps/unix/sysv/linux/timer_routines.c (timer_helper_thread):
4496         Block SIGTIMER.  Also handle SI_TKILL events and terminate thread
4497         in this case.
4498
4499 2003-04-19  Ulrich Drepper  <drepper@redhat.com>
4500
4501         * sysdeps/unix/sysv/linux/i386/dl-sysdep.h
4502         (DL_SYSINFO_IMPLEMENTATION): Add .eh_frame information.
4503
4504         * sysdeps/unix/sysv/linux/unregister-atfork.c
4505         (__unregister_atfork): Don't free memory not allocated dynamically.
4506
4507         * semaphore.h: Remove __THROW marker from cancellation points.
4508         * nptl/sysdeps/pthread/pthread.h: Likewise.
4509
4510 2003-04-18  Ulrich Drepper  <drepper@redhat.com>
4511
4512         * sysdeps/pthread/pthread.h: Don't mark pthread_testcancel,
4513         pthread_cancel, pthread_setcancelstate, and pthread_setcanceltype with
4514         __THROW.
4515
4516 2003-04-16  Jakub Jelinek  <jakub@redhat.com>
4517
4518         * tst-cancel4.c (do_test): Use %zd instead of %d when printing cnt.
4519
4520 2003-04-15  Roland McGrath  <roland@redhat.com>
4521
4522         * forward.c (__pthread_unwind): Tweak to avoid warning.
4523
4524 2003-04-15  Ulrich Drepper  <drepper@redhat.com>
4525
4526         * pthreadP.h: Move THREAD_ATOMIC_* replacements to the top.
4527
4528 2003-04-14  Ulrich Drepper  <drepper@redhat.com>
4529
4530         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: Don't
4531         overflow CFA advance instructions.
4532         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: Likewise.
4533
4534 2003-04-14  Jakub Jelinek  <jakub@redhat.com>
4535
4536         * sysdeps/i386/tls.h: Rename LOCK to LOCK_PREFIX.
4537         * sysdeps/i386/pthread_spin_lock.c: Likewise.
4538         * sysdeps/x86_64/tls.h: Likewise.  Define LOCK_PREFIX if not already
4539         defined.
4540
4541         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Use
4542         DW_CFA_advance_loc2 for .Laddl-.Lsubl.
4543         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Use
4544         DW_CFA_advance_loc for .Laddl-.Lsubl.
4545
4546 2003-04-13  Ulrich Drepper  <drepper@redhat.com>
4547
4548         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Don't use
4549         position-independent unwind data for static libraries.
4550         Add missing unwind info.  Add comments.
4551
4552         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: Add unwind info.
4553         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: Likewise.
4554         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Likewise.
4555         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Likewise.
4556
4557 2003-04-12  Ulrich Drepper  <drepper@redhat.com>
4558
4559         * Makefile: Make sure all cancellation points are compiled with
4560         exception and asynchronous unwind tables.
4561
4562         * sysdeps/x86_64/tls.h (THREAD_SETMEM): Word around compiler bug
4563         which mishandles loading of global object addresses in PIC.
4564         (THREAD_SETMEM_NC): Likewise.
4565
4566 2003-04-11  Ulrich Drepper  <drepper@redhat.com>
4567
4568         * pthread.h: Define new data structure for cleanup buffer.  Declare
4569         new cleanup handler interfaces.
4570         * descr.h: Include <unwind.h> if necessary.  Define pthread_unwind_buf.
4571         (struct pthread): Add cleanup_jmp_buf pointer.  Define
4572         HAVE_CLEANUP_JMP_BUF and not HAVE_CANCELBUF.
4573         * pthreadP.h: Declare __pthread_unwind.  Define __do_cancel to use
4574         it.  Declare old cleanup handler installation functions.
4575         * cleanup.c: Rewrite.  Install handler for unwind-based cleanup
4576         handling.
4577         * cleanup_defer.c: Likewise.
4578         * cleanup_compat.c: New file.  Old cleanup code.
4579         * cleanup_def_compat.c: New file.  Old cleanup code.
4580         * pthread_create.c (start_thread): Initialize cleanup_jmp_buf element
4581         if own thread descriptor.
4582         * unwind.c: New file.
4583         * forward.c: Add __pthread_unwind.
4584         * init.c (pthread_functions): Add __pthread_unwind.
4585         * sysdeps/pthread/pthread-functions.s (struct pthread_functions):
4586         Add ptr___pthread_unwind.
4587         * Versions [GLIBC_2.3.3] (libpthread): Export new cleanup handling
4588         and unwind function.
4589         * Makefile (libpthread-routines): Add cleanup_compat,
4590         cleanup_def_compat, and unwind.  Define CFLAGS to enable unwind
4591         table generation if necessary.
4592         * version.c: Record whether unwind support is compiled in.
4593         * sysdeps/pthread/configure.in: Add checks for unwind unterfaces.
4594         * sysdeps/pthread/bits/libc-lock.h: Add prototypes of the old cleanup
4595         handler interfaces.
4596         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Add quite a bit of
4597         complication to generate unwind information for syscall wrappers.
4598         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
4599         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h: Define
4600         __cleanup_fct_attribute.
4601
4602         * Makefile: Add rules to build and run tst-cleanup0.
4603         * tst-cleanup0.c: New file.
4604         * tst-cleanup0.expect: New file.
4605
4606         * pthread_create.c (deallocate_tsd): Don't take parameter.  Adjust
4607         caller.  Optimize to avoid often unecessary local variable.
4608
4609 2003-04-11  Roland McGrath  <roland@redhat.com>
4610
4611         * Makefile ($(objpfx)multidir.mk): New target, generated makefile that
4612         sets variable `multidir'; include that.
4613         (generated): Add it.
4614         ($(objpfx)$(multidir)/crti.o): New target.
4615         [$(multidir) != .] (generated-dirs, extra-objs, omit-deps): Add it.
4616
4617 2003-04-11  Ulrich Drepper  <drepper@redhat.com>
4618
4619         * tst-attr2.c (do_test): Add cast to avoid warning.
4620         * tst-mutex4.c (do_test): Likewise.
4621
4622 2003-04-10  Ulrich Drepper  <drepper@redhat.com>
4623
4624         * sysdeps/unix/sysv/linux/fork.c (__libc_fork): Reset CPU clocks
4625         in child.
4626
4627 2003-04-09  Ulrich Drepper  <drepper@redhat.com>
4628
4629         * Makefile (tests): Add tst-detach1.
4630         * tst-detach1.c: New file.
4631
4632 2003-04-08  Ulrich Drepper  <drepper@redhat.com>
4633
4634         * sysdeps/pthread/pthread.h: Remove duplicate
4635         pthread_cleanup_{push,pop} definitions.
4636
4637         * tst-barrier2.c: Eliminate warnings.
4638         * tst-cancel4.c: Likewise.
4639         * tst-cond4.c: Likewise.
4640         * tst-cond6.c: Likewise.
4641         * tst-detach1.c: Likewise.
4642         * tst-rwlock4.c: Likewise.
4643         * tst-rwlock6.c: Likewise.
4644         * tst-rwlock7.c: Likewise.
4645         * tst-sem3.c: Likewise.
4646         * tst-spin2.c: Likewise.
4647         * tst-umask1.c: Likewise.
4648
4649 2003-04-07  Ulrich Drepper  <drepper@redhat.com>
4650
4651         * pthread_detach.c (pthread_detach): Fix test for invalid TID.
4652
4653 2003-04-06  Ulrich Drepper  <drepper@redhat.com>
4654
4655         * descr.h (struct pthread): Move cancelhandling member to the front.
4656
4657 2003-04-05  Ulrich Drepper  <drepper@redhat.com>
4658
4659         * sysdeps/unix/sysv/linux/register-atfork.c: Define malloc_prepare,
4660         malloc_parent, and malloc_child statically.
4661         (__register_atfork_malloc): New function.
4662         (free_mem): Don't free any of the malloc_* variables on the list.
4663         * sysdeps/unix/sysv/linux/fork.h: Declare __register_atfork_malloc.
4664         Define HAVE_register_atfork_malloc.
4665
4666 2003-04-04  Ulrich Drepper  <drepper@redhat.com>
4667
4668         * sysdeps/pthread/createthread.c (create_thread): Add some more
4669         comments explaining when to set multiple_threads and when not.
4670
4671         * pthreadP.h: Define THREAD_ATOMIC_CMPXCHG_VAL and
4672         THREAD_ATOMIC_BIT_SET if not already defined.
4673         * sysdeps/i386/tls.h: Define THREAD_ATOMIC_CMPXCHG_VAL and
4674         THREAD_ATOMIC_BIT_SET:
4675         * sysdeps/x86_64/tls.h: Likewise.
4676         * cleanup_defer.c (_pthread_cleanup_push_defer): Rewrite to use
4677         THREAD_ATOMIC_CMPXCHG_VAL.
4678         (_pthread_cleanup_pop_restore): Likewise.
4679         * cancellation.c (__pthread_enable_asynccancel): Likewise.
4680         (__pthread_enable_asynccancel_2): Likewise.
4681         (__pthread_disable_asynccancel): Likewise.
4682         * libc-cancellation.c (__libc_enable_asynccancel): Likewise.
4683         (__libc_disable_asynccancel): Likewise.
4684         * init.c (sigcancel_handler): Likewise.
4685         * pthread_setcancelstate.c (__pthread_setcancelstate): Likewise.
4686         * pthread_setcanceltype.c (__pthread_setcanceltype): Likewise.
4687
4688 2003-04-03  Ulrich Drepper  <drepper@redhat.com>
4689
4690         * init.c (sigcancel_handler): Don't set EXITING_BIT here.
4691         * libc-cancellation.c (__libc_enable_asynccancel): Likewise.
4692         * pthreadP.h (__do_cancel): Set EXITING_BIT here.
4693         * Makefile (tests): Add tst-cancel11.
4694         * tst-cancel11.c: New file.
4695
4696 2003-04-01  Ulrich Drepper  <drepper@redhat.com>
4697
4698         * pthread_create.c (deallocate_tsd): Clear/free memory after the last
4699         round, not the first.  Use specific_used flag instead of local
4700         found_nonzero variable.  Use THREAD_[SG]ETMEM where possible.
4701         (__free_tcb): Don't call deallocate_tsd here.
4702         (start_thread): Call deallocate_tsd here.
4703         * pthread_setspecific.c: Set specific_used flag really only when
4704         needed.
4705         * Makefile (tests): Add tst-tsd3.c and tst-tsd4.
4706         * tst-tsd3.c: New file.
4707         * tst-tsd4.c: New file.
4708
4709 2003-03-31  Ulrich Drepper  <drepper@redhat.com>
4710
4711         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h (__lll_mutex_lock):
4712         Use atomic_exchange_and_add instead of __lll_add.
4713         (__lll_mutex_timedlock): Likewise.
4714         Patch by Ian Wienand.
4715
4716 2003-03-24  Steven Munroe  <sjmunroe@us.ibm.com>
4717
4718         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h
4719         (SINGLE_THREAD_P): Fix typo.
4720         * tst-cancel-wrappers.sh: Handle '.'ed symbols.
4721
4722 2003-03-31  Ulrich Drepper  <drepper@redhat.com>
4723
4724         * Makefile (tests): Add tst-align.
4725         * tst-align.c: New file.
4726         * sysdeps/i386/Makefile: Define CFLAGS-tst-align.
4727
4728         * sysdeps/i386/tls.h (CALL_THREAD_FCT): Align stack of called
4729         function correctly.
4730
4731         * tst-tsd2.c: Add casts to avoid warnings.
4732
4733 2003-03-30  Ulrich Drepper  <drepper@redhat.com>
4734
4735         * descr.h (struct pthread): Move most often used elements to the front.
4736
4737 2003-03-29  Ulrich Drepper  <drepper@redhat.com>
4738
4739         * Makefile (libpthread-routines): Add pthread_atfork.
4740         (libpthread-static-only-routines): Add pthread_atfork.
4741
4742 2003-03-28  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
4743
4744         * sysdeps/sh/tls.h: Include nptl/descr.h after the definition
4745         of TLS_DTV_AT_TP.
4746         (INSTALL_DTV): Add parens.
4747         (THREAD_GETMEM, THREAD_GETMEM_NC, THREAD_SETMEM, THREAD_SETMEM_NC):
4748         Use passed descr instead of THREAD_SELF.
4749         * sysdeps/unix/sysv/linux/sh/lowlevelmutex.S
4750         (__lll_mutex_timedlock_wait): Correct expected value after
4751         spurious wakeup.
4752         * sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S:
4753         Release lock before waking up the waiters.
4754         * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Correct exit
4755         criteria.  Reorderstruct passed to cleanup handler.  Fix
4756         handling of cancellation and failung pthread_mutex_unlock call.
4757         Use __pthread_enable_asynccancel_2 instead of
4758         __pthread_enable_asynccancel.
4759         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Likewise.
4760         Return result of lock re-get if it fails.
4761         * sysdeps/unix/sysv/linux/sh/pthread_once.S: Fix wrong argument
4762         for __pthread_cleanup_push.
4763         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: Fix
4764         completely broken rwlock implementation.
4765         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: Likewise.
4766         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S: Likewise.
4767         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S: Likewise.
4768         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: Likewise.
4769         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: Likewise.
4770         * sysdeps/unix/sysv/linux/sh/sem_post.S: Fix error value.  Use
4771         versioned_symbol macro.
4772         * sysdeps/unix/sysv/linux/sh/sem_trywait.S: Use versioned_symbol macro.
4773         * sysdeps/unix/sysv/linux/sh/sem_wait.S: Likewise.
4774
4775 2003-03-27  Ulrich Drepper  <drepper@redhat.com>
4776
4777         * sysdeps/unix/sysv/linux/kernel-posix-timers.h: Don't declare
4778         __timer_helper_thread.  Declare __start_helper_thread, __helper_once,
4779         and __helper_tid.
4780         (struct timer): Remove th and bar field.
4781         * sysdeps/unix/sysv/linux/timer_create.c (timer_create): Remove
4782         debugging code.  Create only one helper thread.
4783         * sysdeps/unix/sysv/linux/timer_delete.c (timer_delete): Don't kill
4784         helper thread.
4785         * sysdeps/unix/sysv/linux/timer_routines.c (timer_helper_thread):
4786         Renamed.  Define statically.  Use thread info from siginfo.
4787         (__helper_once): New variable.
4788         (__helper_tid): New variable.
4789         (__reset_helper_control): New function.
4790         (__start_helper_thread): New function.
4791
4792         * pthread_create.c (start_thread): Don't use setjmp inside
4793         __builtin_expect to work around gcc bug.
4794
4795         * sysdeps/unix/sysv/linux/timer_delete.c (timer_delete): Even if
4796         timer_delete syscall fails, but not with ENOSYS, set
4797         __no_posix_timers.
4798
4799         * sysdeps/unix/sysv/linux/timer_settime.c [!__ASSUME_POSIX_TIMERS]
4800         (timer_settime): Fix typo.
4801         * sysdeps/unix/sysv/linux/timer_getoverr.c
4802         [!__ASSUME_POSIX_TIMERS] (timer_getoverrun): Likewise.
4803
4804 2003-03-27  Jakub Jelinek  <jakub@redhat.com>
4805
4806         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Fix
4807         offset of cleanupbuf.__prev.
4808
4809 2003-03-26  Jakub Jelinek  <jakub@redhat.com>
4810
4811         * sysdeps/unix/sysv/linux/timer_getoverr.c: Fix typo in name
4812         of included file.
4813
4814 2003-03-26  Ulrich Drepper  <drepper@redhat.com>
4815
4816         * sysdeps/unix/sysv/linux/timer_create.c (timer_create): If EVP ==
4817         NULL provide default definition to syscall.
4818
4819 2003-03-25  Roland McGrath  <roland@redhat.com>
4820
4821         * sysdeps/pthread/posix-timer.h (TIMER_MAX): Define if not defined.
4822         (timer_id2ptr): Fix typo.
4823
4824 2003-03-25  Ulrich Drepper  <drepper@redhat.com>
4825
4826         * pthreadP.h: Define SIGCANCEL and SIGTIMER.
4827         * sysdeps/i386/pthreaddef.h: Remove SIGCANCEL definition.
4828         * sysdeps/ia64/pthreaddef.h: Likewise.
4829         * sysdeps/powerpc/pthreaddef.h: Likewise.
4830         * sysdeps/s390/pthreaddef.h: Likewise.
4831         * sysdeps/sh/pthreaddef.h: Likewise.
4832         * sysdeps/x86_64/pthreaddef.h: Likewise.
4833         * init.c (__pthread_initialize_minimal): Block SIGTIMER.
4834         * sysdeps/pthread/sigaction.c: Also prevent SIGTIMER handler from
4835         being changed.
4836         * sysdeps/pthread/pthread_sigmask.c (pthread_sigmask): Make sure
4837         SIGTIMER is not unblocked.
4838         * sysdeps/unix/sysv/linux/allocrtsig.c (current_rtmin): One more
4839         RT signal taken.
4840         * sysdeps/unix/sysv/linux/pthread_kill.c: Do not allow SIGTIMER to
4841         be send.
4842         * sysdeps/pthread/posix-timer.h (timer_id2ptr, timer_ptr2id): Just
4843         pass pointer through as ID.
4844         * sysdeps/unix/sysv/linux/bits/local_lim.h (TIMER_MAX): Removed.
4845         * sysdeps/unix/sysv/linux/kernel-posix-timers.h: New file.
4846         * sysdeps/unix/sysv/linux/timer_create.c: New file.
4847         * sysdeps/unix/sysv/linux/timer_delete.c: New file.
4848         * sysdeps/unix/sysv/linux/timer_getoverr.c: New file.
4849         * sysdeps/unix/sysv/linux/timer_gettime.c: New file.
4850         * sysdeps/unix/sysv/linux/timer_routines.c: New file.
4851         * sysdeps/unix/sysv/linux/timer_settime.c: New file.
4852         * sysdeps/unix/sysv/linux/ia64/Versions: New file.
4853         * sysdeps/unix/sysv/linux/ia64/timer_create.c: New file.
4854         * sysdeps/unix/sysv/linux/ia64/timer_delete.c: New file.
4855         * sysdeps/unix/sysv/linux/ia64/timer_getoverr.c: New file.
4856         * sysdeps/unix/sysv/linux/ia64/timer_gettime.c: New file.
4857         * sysdeps/unix/sysv/linux/ia64/timer_settime.c: New file.
4858         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: New file.
4859         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c: New file.
4860         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c: New file.
4861         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c: New file.
4862         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c: New file.
4863         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c: New file.
4864         * sysdeps/unix/sysv/linux/s390/s390-64/Versions: New file.
4865         * sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: New file.
4866         * sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: New file.
4867         * sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: New file.
4868         * sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: New file.
4869         * sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: New file.
4870         * sysdeps/unix/sysv/linux/x86_64/Versions: New file.
4871         * sysdeps/unix/sysv/linux/x86_64/compat-timer.h: New file.
4872         * sysdeps/unix/sysv/linux/x86_64/timer_create.c: New file.
4873         * sysdeps/unix/sysv/linux/x86_64/timer_delete.c: New file.
4874         * sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c: New file.
4875         * sysdeps/unix/sysv/linux/x86_64/timer_gettime.c: New file.
4876         * sysdeps/unix/sysv/linux/x86_64/timer_settime.c: New file.
4877
4878         * pthreadP.h: Remove FRAME_LEFT definition.
4879         * cleanup.c (_pthread_cleanup_push): Don't check for reference to
4880         already left frame.  Programs which have this problem are not POSIX
4881         compliant.
4882         * cleanup_defer.c (_pthread_cleanup_push_defer): Likewise.
4883
4884 2003-03-24  Ulrich Drepper  <drepper@redhat.com>
4885
4886         * sysdeps/pthread/tst-timer.c: Check return values of the
4887         functions we test.
4888
4889 2003-03-23  Roland McGrath  <roland@redhat.com>
4890
4891         * tst-tls3.c (do_test) [! HAVE___THREAD]: Don't test anything.
4892         * tst-tls3mod.c: Likewise.
4893         * tst-tls1.c: Likewise.
4894         * tst-tls2.c: Likewise.
4895
4896         * tst-mutex5.c (do_test): Unlock before destroy, otherwise we invoke
4897         undefined behavior.
4898
4899         * tst-join5.c (tf1, tf2): Add a cast.
4900
4901         * Makeconfig (includes): Append -I$(..)nptl to this variable.
4902
4903         * tst-barrier2.c (do_test) [! _POSIX_THREAD_PROCESS_SHARED]:
4904         Don't test anything.
4905         * tst-cond4.c: Likewise.
4906         * tst-cond6.c: Likewise.
4907         * tst-flock2.c: Likewise.
4908         * tst-mutex4.c: Likewise.
4909         * tst-rwlock4.c: Likewise.
4910         * tst-signal1.c: Likewise.
4911         * tst-spin2.c: Likewise.
4912         * tst-cond11.c [! _POSIX_CLOCK_SELECTION]: Likewise.
4913
4914         * tst-mutex4.c: Use test-skeleton.c.
4915         * tst-spin2.c: Likewise.
4916         * tst-sysconf.c: Likewise.
4917         * tst-barrier2.c: Likewise.
4918         * tst-cond4.c: Likewise.
4919         * tst-cond6.c: Likewise.
4920         * tst-rwlock4.c: Likewise.
4921         * tst-unload.c: Likewise.
4922         * tst-flock2.c (do_test): Use return instead of exit.
4923
4924 2003-03-22  Jakub Jelinek  <jakub@redhat.com>
4925
4926         * sysdeps/unix/sysv/linux/fork.c (__fork): Add libc_hidden_def.
4927
4928 2003-03-21  Ulrich Drepper  <drepper@redhat.com>
4929
4930         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h
4931         (__lll_mutex_trylock): Use atomic_compare_and_exchange_val_acq
4932         instead of __lll_compare_and_swap.
4933         * sysdeps/unix/sysv/linux/ia64/pthread_once.c (__pthread_once):
4934         Likewise.
4935         Removed definition if __lll_compare_and_swap.
4936
4937         * cancellation.c: Adjust for new form of compare&exchange macros.
4938         * cleanup_defer.c: Likewise.
4939         * init.c: Likewise.
4940         * libc-cancellation.c: Likewise.
4941         * old_pthread_cond_broadcast.c: Likewise.
4942         * old_pthread_cond_signal.c: Likewise.
4943         * old_pthread_cond_timedwait.c: Likewise.
4944         * old_pthread_cond_wait.c: Likewise.
4945         * pthread_cancel.c: Likewise.
4946         * pthread_create.c: Likewise.
4947         * pthread_detach.c: Likewise.
4948         * pthread_join.c: Likewise.
4949         * pthread_key_delete.c: Likewise.
4950         * pthread_setcancelstate.c: Likewise.
4951         * pthread_setcanceltype.c: Likewise.
4952         * pthread_timedjoin.c: Likewise.
4953         * pthread_tryjoin.c: Likewise.
4954         * sysdeps/pthread/createthread.c: Likewise.
4955
4956 2003-03-20  Ulrich Drepper  <drepper@redhat.com>
4957
4958         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: Include <atomic.h>.
4959         Remove __lll_add, __lll_dec_if_positive, and __lll_test_and_set
4960         definitions.  Replace uses with calls to atomic_* functions.
4961         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
4962         * sysdeps/unix/sysv/linux/lowlevellock.c: Replace __lll_add and
4963         __lll_test_and_set calls with atomic_exchange_and_add and
4964         atomic_exchange calls respectively.
4965         * sysdeps/unix/sysv/linux/sem_post.c: Likewise.
4966         * sysdeps/unix/sysv/linux/sem_timedwait.c: Likewise.
4967         * sysdeps/unix/sysv/linux/sem_trywait.c: Likewise.
4968         * sysdeps/unix/sysv/linux/sem_wait.c: Likewise.
4969         * sysdeps/unix/sysv/linux/ia64/pthread_once.c: Likewise.
4970         * sysdeps/unix/sysv/linux/ia64/sem_port.c: Likewise.
4971         * sysdeps/unix/sysv/linux/powerpc/pthread_once.c: Likewise.
4972
4973         * allocatestack.c (allocate_stack): Assume atomic_exchange_and_add
4974         returns the old value.
4975
4976 2003-03-20  Martin Schwidefsky  <sky@mschwid3.boeblingen.de.ibm.com>
4977
4978         * sysdeps/s390/pthread_spin_lock.c (pthread_spin_lock): Use type
4979         int for variable OLDVAL and correct inline assembler contraint.
4980         * sysdeps/s390/pthread_spin_trylock.c (pthread_spin_trylock): Use
4981         type int for variable OLD.
4982
4983         * sysdeps/s390/tls.h (TLS_MULTIPLE_THREADS_IN_TCB): Define it
4984         only for s390-32.
4985         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h
4986         (SINGLE_THREAD_P): Use global variable __local_multiple_threads
4987         instead of multiple_threads field in the TCB.
4988
4989 2003-03-19  Ulrich Drepper  <drepper@redhat.com>
4990
4991         * sysdeps/i386/i686/bits/atomic.h: Removed.
4992         * sysdeps/i386/i586/bits/atomic.h: Removed.
4993         * sysdeps/i386/i486/bits/atomic.h: Removed.  Moved to glibc.
4994         * sysdeps/x86_64/bits/atomic.h: Removed.  Moved to glibc.
4995         * sysdeps/s390/bits/atomic.h: Removed.  Moved to glibc.
4996         * sysdeps/sh/bits/atomic.h: Removed.  Moved to glibc.
4997         * sysdeps/ia64/bits/atomic.h: Removed.  Moved to glibc.
4998         * sysdeps/powerpc/bits/atomic.h: Removed.  Moved to glibc.
4999         * atomic.h: Removed.  Moved to glibc.
5000
5001         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: Add
5002         support for clock selection.
5003
5004         * sysdeps/pthread/pthread_cond_broadcast.c: Release lock before
5005         signalling waiters.
5006
5007 2003-03-18  Roland McGrath  <roland@redhat.com>
5008
5009         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h (__lll_test_and_set):
5010         Add __lll_rel_instr first.  Add memory clobber.
5011         (lll_mutex_unlock): Use __lll_test_and_set.
5012         From Paul Mackerras <paulus@samba.org>.
5013
5014         * sysdeps/powerpc/tls.h (TLS_MULTIPLE_THREADS_IN_TCB): Define
5015         unconditionally.
5016         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h
5017         (SINGLE_THREAD_P):  Add `header.' prefix.
5018         From Paul Mackerras <paulus@samba.org>.
5019
5020         * Versions (libpthread: GLIBC_2.3.2): Move pthread_tryjoin_np and
5021         pthread_timedjoin_np to ...
5022         (libpthread: GLIBC_2.3.3): ... here.
5023         (libpthread: GLIBC_2.2): Move pthread_barrierattr_getpshared there too.
5024
5025         * sysdeps/pthread/pthread_cond_timedwait.c (__pthread_cond_timedwait):
5026         Avoid shadowing VAL variable.
5027
5028         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h (__lll_test_and_set):
5029         New macro.
5030
5031 2003-03-18  Ulrich Drepper  <drepper@redhat.com>
5032
5033         * Makefile (tests): Add tst-cond11.
5034         * tst-cond11.c: New file.
5035
5036         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Reorder
5037         struct passed to cleanup handler to eliminate one more
5038         instruction.
5039         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Likewise.
5040
5041         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h
5042         (pthrad_cond_t): Replace __unused field with __clock.
5043
5044         * sysdeps/pthread/pthread_cond_wait.c: Release condvar lock before
5045         waken all waiters in cleanup handler.
5046         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: Likewise.
5047         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Likewise.
5048
5049         * pthread_condattr_getclock.c: New file.
5050         * pthread_condattr_setclock.c: New file.
5051         * sysdeps/pthread/pthread.h: Declare these new functions.
5052         * Versions [GLIBC_2.3.3] (libpthread): Add the new functions.
5053         * Makefile (libpthread-routines): Add the new functions.
5054         * sysdeps/unix/sysv/linux/internaltypes.h (struct pthread_condattr):
5055         Renamed field to value.  Document use of the bits.
5056         * pthread_condattr_getpshared.c: Adjust for struct pthread_condattr
5057         change.
5058         * pthread_condattr_setpshared.c: Likewise.
5059         * pthread_cond_init.c (__pthread_cond_init): Initialized __clock field.
5060         * sysdeps/unix/sysv/linux/lowlevelcond.sym: Add cond_clock symbol.
5061         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h (pthread_cond_t):
5062         Add __clock field.
5063         * sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h: Likewise.
5064         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Likewise.
5065         * sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Likewise.
5066         * sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h: Likewise.
5067         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S:
5068         Implement clock selection.
5069         * sysdeps/pthread/pthread_cond_timedwait.c: Likewise.
5070         * pthread-errnos.sym: Add ENOSYS.
5071         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Define
5072         _POSIX_CLOCK_SELECTION.
5073         * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: Likewise.
5074
5075         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: Remove
5076         invalid .size directive.
5077
5078 2003-03-17  Roland McGrath  <roland@redhat.com>
5079
5080         * sysdeps/unix/sysv/linux/lowlevellock.c (__lll_lock_wait):
5081         Formatting tweaks.
5082
5083 2003-03-17  Ulrich Drepper  <drepper@redhat.com>
5084
5085         * sysdeps/unix/sysv/linux/ia64/pthread_once.c: Use __builtin_expect.
5086         Use __lll_add instead of spelling it out.  Use protected symbol names.
5087         * sysdeps/unix/sysv/linux/ia64/sem_post.c: Use __builtin_expect.
5088         Use __lll_add.
5089         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h (__lll_compare_and_swap):
5090         Renamed from lll_compare_and_swap.  Use new name where necessary.
5091         (__lll_add): Defined.
5092         (__lll_dec_if_positive): Defined.
5093         (__lll_test_and_set): Defined.
5094         * sysdeps/ia64/pthread_spin_init.c: Removed.
5095         * sysdeps/unix/sysv/linux/ia64/lowlevelmutex.c: Removed.
5096         * sysdeps/unix/sysv/linux/ia64/sem_trywait.c: Removed.
5097         * sysdeps/unix/sysv/linux/ia64/sem_wait.c: Removed.
5098         * sysdeps/unix/sysv/linux/ia64/lowlevellock.c: Removed.
5099         * sysdeps/unix/sysv/linux/ia64/libc-lowlevellock.c: Removed.
5100         * sysdeps/unix/sysv/linux/ia64/libc-lowlevelmutex.c: Removed.
5101         * sysdeps/unix/sysv/linux/ia64/sem_timedwait.c: Removed.
5102         * sysdeps/ia64/bits/atomic.h: Add __builtin_expect where appropriate.
5103         * sysdeps/ia64/pthread_spin_unlock.c (pthread_spin_unlock): Use
5104         __sync_lock_release_si.
5105         Patch by Jakub Jelinek.
5106
5107         * sysdeps/unix/sysv/linux/lowlevellock.c (__lll_timedlock_wait):
5108         Fix timeout handling.
5109         (__lll_timedwait_tid): Likewise.
5110         (lll_unlock_wake_cb): Wake up other waiters if necessary.
5111         Patch by Jakub Jelinek.
5112
5113         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Pretty printing.
5114
5115 2003-03-17  Roland McGrath  <roland@redhat.com>
5116
5117         PowerPC port contributed by Paul Mackerras <paulus@samba.org>.
5118         * sysdeps/pthread/pthread_spin_init.c: New file.
5119         * sysdeps/pthread/pthread_spin_unlock.c: New file.
5120         * sysdeps/powerpc/Makefile: New file.
5121         * sysdeps/powerpc/pthread_spin_lock.c: New file.
5122         * sysdeps/powerpc/pthread_spin_trylock.c: New file.
5123         * sysdeps/powerpc/pthreaddef.h: New file.
5124         * sysdeps/powerpc/tcb-offsets.sym: New file.
5125         * sysdeps/powerpc/td_ta_map_lwp2thr.c: New file.
5126         * sysdeps/powerpc/tls.h: New file.
5127         * sysdeps/powerpc/bits/atomic.h: New file.
5128         * sysdeps/unix/sysv/linux/libc-lowlevelmutex.c: New file.
5129         * sysdeps/unix/sysv/linux/libc-lowlevellock.c: New file.
5130         * sysdeps/unix/sysv/linux/lowlevellock.c: New file.
5131
5132         * sysdeps/unix/sysv/linux/lowlevelmutex.c: New file.
5133         * sysdeps/unix/sysv/linux/sem_post.c: New file.
5134         * sysdeps/unix/sysv/linux/sem_timedwait.c: New file.
5135         * sysdeps/unix/sysv/linux/sem_trywait.c: New file.
5136         * sysdeps/unix/sysv/linux/sem_wait.c: New file.
5137         * sysdeps/unix/sysv/linux/powerpc/Makefile: New file.
5138         * sysdeps/unix/sysv/linux/powerpc/createthread.c: New file.
5139         * sysdeps/unix/sysv/linux/powerpc/fork.c: New file.
5140         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: New file.
5141         * sysdeps/unix/sysv/linux/powerpc/pt-vfork.S: New file.
5142         * sysdeps/unix/sysv/linux/powerpc/pthread_once.c: New file.
5143         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: New file.
5144         * sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h: New file.
5145         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: New file.
5146         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: New file.
5147
5148         * sysdeps/unix/sysv/linux/ia64/lowlevellock.c: Use __gettimeofday,
5149         not gettimeofday.
5150         * sysdeps/unix/sysv/linux/ia64/lowlevelmutex.c: Likewise.
5151         * sysdeps/unix/sysv/linux/ia64/sem_timedwait.c: Likewise.
5152         * sysdeps/unix/sysv/linux/s390/lowlevellock.c: Likewise.
5153         * sysdeps/unix/sysv/linux/s390/lowlevelmutex.c: Likewise.
5154         * sysdeps/unix/sysv/linux/s390/sem_timedwait.c: Likewise.
5155
5156 2003-03-17  Ulrich Drepper  <drepper@redhat.com>
5157
5158         * sysdeps/pthread/pthread_cond_wait.c: Correct exit criteria.
5159         * sysdeps/pthread/pthread_cond_timedwait.c: Likewise.
5160         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Likewise.
5161         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Likewise.
5162         Patch by Ewald Snel <ewald@rambo.its.tudelft.nl>.
5163
5164 2003-03-16  Roland McGrath  <roland@redhat.com>
5165
5166         * tst-fork4.c: Include <string.h>.
5167         * tst-signal2.c: Likewise.
5168         * tst-mutex5.c (do_test): exit -> return.
5169         * tst-mutex2.c: Include <stdlib.h>.
5170
5171 2003-03-16  Ulrich Drepper  <drepper@redhat.com>
5172
5173         * sysdeps/unix/sysv/linux/i386/i486/lowlevelmutex.S
5174         (__lll_mutex_timedlock_wait): Correct expected value after
5175         spurious wakeup.  Otherwise we would never wait again.
5176
5177         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Work around red
5178         zone versus inline asm stupidity.  Use correct instructions.
5179
5180         * tst-rwlock6.c: Add some more status output.
5181
5182 2003-03-15  Roland McGrath  <roland@redhat.com>
5183
5184         * sysdeps/pthread/configure.in: New file.
5185         * sysdeps/pthread/configure: New file (generated).
5186
5187 2003-03-15  Ulrich Drepper  <drepper@redhat.com>
5188
5189         * allocatestack.c (allocate_stack): Store the exact stack size of
5190         user allocated stacks.
5191
5192 2003-03-15  Jakub Jelinek  <jakub@redhat.com>
5193
5194         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h
5195         (SINGLE_THREAD): Use `header' prefix instead of `header.data'.
5196         * sysdeps/sh/tcb-offsets.sym (MULTIPLE_THREADS_OFFSET): Likewise.
5197         * sysdeps/sh/tls.h (TLS_MULTIPLE_THREADS_IN_TCB): Define.
5198         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h (SINGLE_THREAD_P):
5199         Use `header.' prefix.
5200         * sysdeps/ia64/tcb-offsets.sym (MULTIPLE_THREADS_OFFSET): Likewise.
5201
5202 2003-03-15  Ulrich Drepper  <drepper@redhat.com>
5203
5204         * sysdeps/x86_64/pthreaddef.h (CURRENT_STACK_FRAME): Don't use
5205         __builtin_frame_address, use stack pointer.
5206
5207         * sysdeps/unix/sysv/linux/jmp-unwind.c: Use CURRENT_STACK_FRAME
5208         instead of __builtin_frame_pointer.
5209
5210 2003-03-14  Ulrich Drepper  <drepper@redhat.com>
5211
5212         * tst-basic1.c (do_test): Add cast to avoid warning.
5213         * tst-basic2.c (do_test): Likewise.
5214
5215         * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Use correct
5216         amount of stack correction.
5217
5218         * tst-fork4.c: Use test-skeleton.c.
5219
5220 2003-03-14  Roland McGrath  <roland@redhat.com>
5221
5222         * init.c: Fix typo "#eli" for "#else".
5223
5224 2003-03-14  Steven Munroe  <sjmunroe@us.ibm.com>
5225
5226         * allocatestack.c (__stack_user): Use hidden_data_def.
5227         * pthread_create.c (__pthread_keys): Likewise.
5228
5229         * init.c [__powerpc__] (__NR_set_tid_address): Define it.
5230
5231 2003-03-14  Roland McGrath  <roland@redhat.com>
5232
5233         * tst-fork4.c: New file.
5234         * Makefile (tests): Add it.
5235
5236         * descr.h (struct pthread): Move the union out of [!TLS_DTV_AT_TP], so
5237         we always define the padding space.
5238         [!TLS_DTV_AT_TP]: Give tcbhead_t field a name, `header', since GCC
5239         stopped supporting its own extensions fully.
5240         [TLS_MULTIPLE_THREADS_IN_TCB]: Put `multiple_threads' inside a wrapper
5241         struct also called `header', so `header.multiple_threads' is the field
5242         name to use on all machines.
5243         * allocatestack.c (allocate_stack): Use `header.' prefix.
5244         * sysdeps/pthread/createthread.c (create_thread): Likewise.
5245         * pthread_create.c (__pthread_create_2_1): Likewise.
5246         * sysdeps/i386/tls.h (INSTALL_NEW_DTV, THREAD_DTV): Likewise.
5247         (THREAD_SELF): Likewise.
5248         * sysdeps/x86_64/tls.h: Likewise.
5249         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h
5250         (SINGLE_THREAD_P): Likewise.
5251         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h
5252         (SINGLE_THREAD_P): Likewise.
5253         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h
5254         (SINGLE_THREAD_P): Likewise.
5255
5256         * sysdeps/s390/td_ta_map_lwp2thr.c (td_ta_map_lwp2thr): Use REGS[18]
5257         value directly.
5258
5259 2003-03-14  Ulrich Drepper  <drepper@redhat.com>
5260
5261         * pthread_create.c (start_thread): Use CALL_THREAD_FCT if defined.
5262         * sysdeps/i386/tls.h: Define CALL_THREAD_FCT.
5263
5264         * pthread_create.c (start_thread): setjmp is expected to return 0.
5265
5266         * sysdeps/x86_64/tls.h (THREAD_GETMEM): Mark asms volatile.
5267         (THREAD_GETMEM_NC): Likewise.
5268
5269 2003-03-13  Ulrich Drepper  <drepper@redhat.com>
5270
5271         * allocatestack.c (allocate_stack): If MULTI_PAGE_ALIASING is defined
5272         and the size of the stack which must be allocated is a multiple,
5273         allocate one more page.
5274         * sysdeps/i386/i686/Makefile: Don't define COLORING_INCREMENT, but
5275         MULTI_PAGE_ALIASING.
5276
5277 2003-03-13  Roland McGrath  <roland@redhat.com>
5278
5279         * pthread_create.c (start_thread): Set EXITING_BIT after the
5280         event-reporting (and destructors), not before.
5281
5282 2003-03-13  Jakub Jelinek  <jakub@redhat.com>
5283
5284         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h (lll_futex_timed_wait,
5285         lll_futex_wake): Declare register variables as long int instead of
5286         unsigned long int.  Patch by Ian Wienand <ianw@gelato.unsw.edu.au>.
5287         Make syscall arguments clobbered by the syscall.
5288         (lll_futex_wait): Define using lll_futex_timed_wait.
5289
5290         * sysdeps/ia64/td_ta_map_lwp2thr.c (td_ta_map_lwp2thr): Cast regs[13]
5291         to void *.
5292
5293         * sysdeps/unix/sysv/linux/fork.c (__libc_fork): Only declare and set
5294         PPID if [! NDEBUG].
5295
5296         * allocatestack.c (nptl_ncreated): Only declare if
5297         COLORING_INCREMENT != 0.
5298
5299         * pthreadP.h (__pthread_enable_asynccancel_2): New prototype.
5300         (__libc_enable_asynccancel_2): Remove prototype.
5301
5302         * sysdeps/unix/sysv/linux/ia64/fork.c (ARCH_FORK): Swap ptid and
5303         ctid to match kernel.
5304
5305 2003-03-12  Ulrich Drepper  <drepper@redhat.com>
5306
5307         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add
5308         libc_multiple_threads.
5309         * sysdeps/unix/sysv/linux/libc_pthread_init.c: Move definition of
5310         __libc_multiple_threads to...
5311         * sysdeps/unix/sysv/linux/libc_multiple_threads.c: ...here.  New file.
5312
5313         * sysdeps/unix/sysv/linux/x86_64/sem_post.S: Remove unnecessary
5314         versioning.
5315         * sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: Likewise.
5316         * sysdeps/unix/sysv/linux/x86_64/sem_wait.S: Likewise.
5317
5318         * sysdeps/unix/sysv/linux/x86_64/pthread_once.S
5319         (__pthread_once_internal): Define.
5320
5321         * sysdeps/unix/sysv/linux/i386/i486/sem_post.S: Use shlib-compat.h
5322         macros instead of .symver directly.
5323         * sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: Likewise.
5324         * sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: Likewise.
5325
5326         * sysdeps/x86_64/tls.h [__ASSEMBLER__]: Include tcb-offsets.h.
5327         * sysdeps/x86_64/tcb-offsets.sym: New file.
5328         * sysdeps/x86_64/Makefile: New file.
5329
5330         * sysdeps/i386/tcb-offsets.sym: Add SELF.
5331         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: Use SELF
5332         to access own pthread_t in TCB.
5333         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
5334         Likewise.
5335         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
5336         Likewise.
5337         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: Likewise.
5338
5339 2003-03-12  Roland McGrath  <roland@redhat.com>
5340
5341         * pthread-errnos.sym: New file.
5342         * Makefile (gen-as-const-headers): New variable, list that file.
5343         * sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: Include generated
5344         header <pthread-errnos.h> instead of defining errno values here.
5345         * sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: Likewise.
5346         * sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: Likewise.
5347         * sysdeps/unix/sysv/linux/i386/i486/sem_post.S: Likewise.
5348         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: Likewise.
5349         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
5350         Likewise.
5351         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
5352         Likewise.
5353         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: Likewise.
5354         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Likewise.
5355         * sysdeps/unix/sysv/linux/i386/i486/lowlevelmutex.S: Likewise.
5356         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: Likewise.
5357         * sysdeps/unix/sysv/linux/x86_64/sem_wait.S: Likewise.
5358         * sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: Likewise.
5359         * sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: Likewise.
5360         * sysdeps/unix/sysv/linux/x86_64/sem_post.S: Likewise.
5361         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: Likewise.
5362         * sysdeps/unix/sysv/linux/x86_64/lowlevelmutex.S: Likewise.
5363         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Likewise.
5364         * sysdeps/unix/sysv/linux/sh/sem_trywait.S: Likewise.
5365         * sysdeps/unix/sysv/linux/sh/sem_timedwait.S: Likewise.
5366         * sysdeps/unix/sysv/linux/sh/sem_post.S: Likewise.
5367         * sysdeps/unix/sysv/linux/sh/sem_wait.S: Likewise.
5368         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: Likewise.
5369         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S: Likewise.
5370         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S: Likewise.
5371         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Likewise.
5372         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: Likewise.
5373         * sysdeps/unix/sysv/linux/sh/lowlevellock.S: Likewise.
5374         * sysdeps/unix/sysv/linux/sh/lowlevelmutex.S: Likewise.
5375         * sysdeps/i386/i486/pthread_spin_trylock.S: Likewise.
5376         * sysdeps/x86_64/pthread_spin_trylock.S: Likewise.
5377         * sysdeps/sh/pthread_spin_trylock.S: Likewise.
5378         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: Likewise.
5379         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: Likewise.
5380
5381         * sysdeps/unix/sysv/linux/fork.c: Add an assert to check that
5382         CLONE_CHILD_SETTID worked.
5383
5384 2003-03-12  Ulrich Drepper  <drepper@redhat.com>
5385
5386         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S: New
5387         file.
5388         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S: New
5389         file.
5390
5391         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h
5392         (pthread_cond_t): Add padding.
5393
5394         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: New file.
5395         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: New file.
5396         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: New file.
5397
5398         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S
5399         (__pthread_rwlock_timedwrlock): Add missing opcode suffix.
5400         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S
5401         (__pthread_rwlock_timedrdlock): Likewise.
5402         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S
5403         (__pthread_rwlock_wrlock): Likewise.
5404         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S
5405         (__pthread_rwlock_rdlock): Likewise.
5406
5407         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: New file.
5408
5409         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Return
5410         result of lock re-get if it fails.
5411
5412 2003-03-11  Ulrich Drepper  <drepper@redhat.com>
5413
5414         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Fix asm syntax.
5415         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
5416         * sysdeps/unix/sysv/linux/x86_64/lowlevelmutex.S: Likewise.
5417         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S: Likewise.
5418         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: Likewise.
5419         * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Likewise.
5420         * sysdeps/unix/sysv/linux/x86_64/sem_post.S: Likewise.
5421         * sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: Likewise.
5422         * sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: Likewise.
5423         * sysdeps/unix/sysv/linux/x86_64/sem_wait.S: Likewise.
5424
5425         * sysdeps/x86_64/tls.h (THREAD_SELF, THREAD_GETMEM, THREAD_GETMEM_NC,
5426         THREAD_SETMEM, THREAD_SETMEM_NC): Correct asm syntax.
5427
5428         * allocatestack.c [! TLS_MULTIPLE_THREADS_IN_TCB] (allocate_stack):
5429         Initialize *__libc_multiple_threads_ptr not __libc_multiple_threads.
5430         * sysdeps/pthread/createthread.c [! TLS_MULTIPLE_THREADS_IN_TCB]
5431         (create_thread): Likewise.
5432         Define __pthread_multiple_threads and __libc_multiple_threads_ptr.
5433         * init.c (__pthread_initialize_minimal_internal): Initialize
5434         __libc_multiple_threads_ptr if necessary.
5435         * pthreadP.h: Adjust prototype for __libc_pthread_init.  Declare
5436         __pthread_multiple_threads and __libc_multiple_threads_ptr.
5437         * sysdeps/unix/sysv/linux/libc_pthread_init.c: Define
5438         __libc_multiple_threads.
5439         (__libc_pthread_init): Return pointer to __libc_pthread_init if
5440         necessary.
5441
5442         * sysdeps/i386/tls.h (THREAD_SETMEM): Fix one-byte variant.
5443         (THREAD_SETMEM_NC): Likewise.
5444
5445         * sysdeps/x86_64/pthread_spin_trylock.c: Removed.
5446         * sysdeps/x86_64/pthread_spin_trylock.S: New file.
5447         * sysdeps/x86_64/pthread_spin_unlock.c: Removed.
5448         * sysdeps/x86_64/pthread_spin_unlock.S: New file.
5449
5450         * sysdeps/i386/i486/pthread_spin_trylock.S (pthread_spin_trylock):
5451         Eliminate one entire instruction.
5452
5453         * cancellation.c (__pthread_enable_asynccancel_2): New function.
5454         * pthreadP.h: Declare __pthread_enable_asynccancel_2.
5455         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S
5456         (__pthread_cond_timedwait): Use __pthread_enable_asynccancel_2
5457         instead of __pthread_enable_asynccancel.
5458         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S
5459         (__pthread_cond_wait): Likewise.
5460         * sysdeps/pthread/pthread_cond_timedwait.c
5461         (__pthread_cond_timedwait): Likewise.
5462         * sysdeps/pthread/pthread_cond_wait.c (__pthread_cond_wait): Likewise.
5463
5464         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S
5465         (__condvar_cleanup): Wake up all waiters in case we got signaled
5466         after being woken up but before disabling asynchronous
5467         cancellation.
5468         * sysdeps/pthread/pthread_cond_wait.c (__condvar_cleanup): Likewise.
5469         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S
5470         (__condvar_cleanup): Likewise.
5471
5472         * init.c (__NR_set_tid_address): If already defined, don't redefine.
5473         Make it an error if architecture has no #if case.  Add x86-64.
5474
5475         * sysdeps/unix/sysv/linux/x86_64/Makefile: Add flags for
5476         pt-initfini.s generation.
5477
5478         * sysdeps/x86_64/tls.h: Include <asm/prctl.h>.
5479         (TLS_INIT_TP): Fix typo.
5480
5481 2003-03-11  Jakub Jelinek  <jakub@redhat.com>
5482
5483         * sysdeps/ia64/bits/atomic.h (atomic_exchange_and_add): Swap 2nd and
5484         3rd argument of __arch_compare_and_exchange_{32,64}_val_acq.
5485
5486         * sysdeps/unix/sysv/linux/ia64/sem_post.c: Include semaphore.h.
5487         * sysdeps/unix/sysv/linux/ia64/sem_timedwait.c: Likewise.
5488         * sysdeps/unix/sysv/linux/ia64/sem_trywait.c: Likewise.
5489         * sysdeps/unix/sysv/linux/ia64/sem_wait.c: Likewise.
5490         * sysdeps/unix/sysv/linux/s390/sem_post.c: Likewise.
5491         * sysdeps/unix/sysv/linux/s390/sem_timedwait.c: Likewise.
5492         * sysdeps/unix/sysv/linux/s390/sem_trywait.c: Likewise.
5493         * sysdeps/unix/sysv/linux/s390/sem_wait.c: Likewise.
5494
5495 2003-03-11  Ulrich Drepper  <drepper@redhat.com>
5496
5497         * sysdeps/pthread/pthread_cond_timedwait.c
5498         (__pthread_cond_timedwait): Return the result of the final
5499         locking.  If it succeeds, the regular function return value.
5500
5501         * sysdeps/pthread/pthread_cond_wait.c (__pthread_cond_wait):
5502         Return result of the final locking.
5503         * version.c (__nptl_main): Work around problems with the strange
5504         INTERNAL_SYSCALL macro on ppc32.
5505         * init.c (__pthread_initialize_minimal_internal): Unblock
5506         SIGCANCEL in case the parent blocked it.
5507         Reported by Paul Mackerras <paulus@samba.org>.
5508
5509         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S: New file.
5510         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S: New file.
5511         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: New file.
5512
5513 2003-03-11  Jakub Jelinek  <jakub@redhat.com>
5514
5515         * sysdeps/pthread/pthread_cond_timedwait.c
5516         (__pthread_cond_timedwait): Unlock and fail if
5517         __pthread_mutex_unlock_internal failed.
5518
5519         * sysdeps/pthread/createthread.c (ARCH_CLONE): Define if not defined.
5520         (create_thread): Only assert PD->tcb != NULL under [TLS_TCB_AT_TP].
5521         Use ARCH_CLONE.
5522         * allocatestack.c (ALLOCATE_STACK_PARMS): New macro.
5523         [NEED_SEPARATE_REGISTER_STACK] (STACK_VARIABLES,
5524         STACK_VARIABLES_ARGS, STACK_VARIABLES_PARMS, ALLOCATE_STACK_PARMS,
5525         ALLOCATE_STACK): New macros.
5526         (TLS_TPADJ): New macro.
5527         (get_cached_stack, queue_stack, __deallocate_stack): Use TLS_TPADJ.
5528         (allocate_stack): Handle TLS_DTV_AT_TP and
5529         NEED_SEPARATE_REGISTER_STACK.  Use TLS_TPADJ.
5530         * pthread_create.c (__pthread_create_2_1) [! TLS_TCB_AT_TP]:
5531         Don't set PD->self.
5532         * init.c [__ia64__] (__NR_set_tid_address): Define.
5533
5534         * sysdeps/unix/sysv/linux/ia64/bits/pthreadtypes.h: New file.
5535         * sysdeps/unix/sysv/linux/ia64/bits/semaphore.h: New file.
5536         * sysdeps/unix/sysv/linux/ia64/fork.c: New file.
5537         * sysdeps/unix/sysv/linux/ia64/createthread.c: New file.
5538         * sysdeps/unix/sysv/linux/ia64/libc-lowlevellock.c: New file.
5539         * sysdeps/unix/sysv/linux/ia64/libc-lowlevelmutex.c: New file.
5540         * sysdeps/unix/sysv/linux/ia64/lowlevellock.c: New file.
5541         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: New file.
5542         * sysdeps/unix/sysv/linux/ia64/lowlevelmutex.c: New file.
5543         * sysdeps/unix/sysv/linux/ia64/pt-initfini.c: New file.
5544         * sysdeps/unix/sysv/linux/ia64/pt-vfork.S: New file.
5545         * sysdeps/unix/sysv/linux/ia64/pthread_once.c: New file.
5546         * sysdeps/unix/sysv/linux/ia64/sem_post.c: New file.
5547         * sysdeps/unix/sysv/linux/ia64/sem_timedwait.c: New file.
5548         * sysdeps/unix/sysv/linux/ia64/sem_trywait.c: New file.
5549         * sysdeps/unix/sysv/linux/ia64/sem_wait.c: New file.
5550         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: New file.
5551         * sysdeps/ia64/bits/atomic.h: New file.
5552         * sysdeps/ia64/Makefile: New file.
5553         * sysdeps/ia64/pthread_spin_init.c: New file.
5554         * sysdeps/ia64/pthread_spin_lock.c: New file.
5555         * sysdeps/ia64/pthread_spin_trylock.c: New file.
5556         * sysdeps/ia64/pthread_spin_unlock.c: New file.
5557         * sysdeps/ia64/pthreaddef.h: New file.
5558         * sysdeps/ia64/tcb-offsets.sym: New file.
5559         * sysdeps/ia64/td_ta_map_lwp2thr.c: New file.
5560         * sysdeps/ia64/tls.h: New file.
5561
5562         * sysdeps/s390/pthreaddef.h (__exit_thread_inline): Pass 1 argument
5563         to syscall instead of no arguments.
5564
5565 2003-03-10  Ulrich Drepper  <drepper@redhat.com>
5566
5567         * sysdeps/unix/sysv/linux/x86_64/sem_post.S: New file.
5568         * sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: New file.
5569         * sysdeps/unix/sysv/linux/x86_64/sem_wait.S: New file.
5570         * sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: New file.
5571
5572         * sysdeps/unix/sysv/linux/i386/i486/sem_post.S: Fix error value in
5573         unused code.
5574
5575         * sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S: New file
5576
5577         * sysdeps/unix/sysv/linux/Makefile (gen-as-const-headers): Add
5578         lowlevelbarrier.sym.
5579         * sysdeps/unix/sysv/linux/lowlevelbarrier.sym: New file.
5580         * sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S:
5581         Include lowlevelbarrier.h and don't define offsets locally.
5582         * sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: Likewise.
5583
5584         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h
5585         (__lll_mutex_lock_wait): Reverse order of first two parameters.
5586         (__lll_mutex_timedlock_wait): Likewise.
5587         (lll_mutex_lock): Adjust asm for that.
5588         (lll_mutex_timedlock): Likewise.  Mark cx, cc, r10 as clobbered.
5589         (lll_lock): Adjust asm for operand order change.
5590         * sysdeps/unix/sysv/linux/x86_64/lowlevelmutex.S: New file.
5591         * sysdeps/unix/sysv/linux/x86_64/libc-lowlevelmutex.S: New file.
5592
5593         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h (__lll_lock_wait):
5594         Reverse order of parameters.
5595         (__lll_timedwait_tid): Remove regparms attribute.
5596         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: New file.
5597         * sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S: New file.
5598
5599         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S
5600         (__lll_timedwait_tid): Remove one unnecessary instruction.
5601
5602         * sysdeps/unix/sysv/linux/sh/lowlevelmutex.S: Define
5603         __lll_mutex_timedlock_wait only for NOT_IN_libc.
5604         * sysdeps/unix/sysv/linux/sh/libc-lowlevelmutex.S: Include
5605         lowlevelmutex.S.
5606
5607         * sysdeps/unix/sysv/linux/sh/lowlevellock.S: Define
5608         lll_unlock_wake_cb, __lll_wait_tid, and __lll_timedwait_tid only
5609         for NOT_IN_libc.
5610         * sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: Include
5611         lowlevellock.S.
5612
5613         * sysdeps/unix/sysv/linux/i386/i486/lowlevelmutex.S: Don't define
5614         LOCK is already defined.  Don't define __lll_mutex_timedlock_wait
5615         for libc.so.
5616         * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevelmutex.S: Only
5617         define LOCK here (if UP is not defined).  The actual code is in
5618         lowlevelmutex.S.
5619
5620         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: Don't define
5621         LOCK is already defined.  Don't define lll_unlock_wake_cb and
5622         __lll_timedwait_tid for libc.so.
5623         * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: Only
5624         define LOCK here (if UP is not defined).  The actual code is in
5625         lowlevellock.S.
5626
5627         * sysdeps/unix/sysv/linux/i386/lowlevelsem.h: Not needed anymore.
5628         * sysdeps/unix/sysv/linux/s390/lowlevelsem.h: Likewise.
5629         * sysdeps/unix/sysv/linux/s390/sem_post.c: Include lowlevellock.h
5630         instead of lowlevelsem.h.
5631         * sysdeps/unix/sysv/linux/s390/sem_timedwait.c: Likewise.
5632         * sysdeps/unix/sysv/linux/s390/sem_trywait.c: Likewise.
5633         * sysdeps/unix/sysv/linux/s390/sem_wait.c: Likewise.
5634
5635         * sysdeps/unix/sysv/linux/Makefile (gen-as-const-headers): Add
5636         lowlevelrwlock.sym.
5637         * sysdeps/unix/sysv/linux/lowlevelrwlock.sym: New file.
5638         * sysdeps/unix/sysv/linux/i386/lowlevelrwlock.h: Removed.
5639         * sysdeps/unix/sysv/linux/sh/lowlevelrwlock.h: Removed.
5640
5641         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h (lll_trylock): Fix
5642         register loading.
5643         * sysdeps/unix/sysv/linux/i386/lowlevellock.h (lll_trylock): Undo
5644         last changed.  D'oh.
5645
5646         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: New file.
5647
5648         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Remove declaration
5649         of __libc_locking_needed.
5650         (lll_trylock): Initialize %eax to zero.
5651
5652         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: Update
5653         pthread_cond_t definition.
5654
5655 2003-03-10  Roland McGrath  <roland@redhat.com>
5656
5657         * sysdeps/unix/sysv/linux/lowlevelcond.sym: New file.
5658         * sysdeps/unix/sysv/linux/Makefile (gen-as-const-headers): Add it.
5659         * sysdeps/unix/sysv/linux/sh/lowlevelcond.h: File removed.
5660         * sysdeps/unix/sysv/linux/i386/lowlevelcond.h: Likewise.
5661         * sysdeps/unix/sysv/linux/x86_64/lowlevelcond.h: Likewise.
5662
5663         * allocatestack.c (allocate_stack) [!TLS_MULTIPLE_THREADS_IN_TCB]:
5664         Instead of setting PD->multiple_threads, set globals
5665         __pthread_multiple_threads and __libc_multiple_threads.
5666         * sysdeps/pthread/createthread.c (create_thread): Likewise.
5667         * sysdeps/i386/tls.h (TLS_MULTIPLE_THREADS_IN_TCB): Define it.
5668         * sysdeps/s390/tls.h (TLS_MULTIPLE_THREADS_IN_TCB): Likewise.
5669
5670         * descr.h (struct pthread): Conditionalize first member on
5671         [!TLS_DTV_AT_TP].  Replace the `header' member with an anonymous union
5672         containing an anonymous tcbhead_t.  Move `list' member out.
5673         [TLS_MULTIPLE_THREADS_IN_TCB]: Define a `multiple_threads' member.
5674         * allocatestack.c: Remove use of `header.data.' prefix.
5675         * pthread_create.c: Likewise.
5676         * init.c (__pthread_initialize_minimal_internal): Likewise.
5677         * sysdeps/pthread/createthread.c (create_thread): Likewise.
5678         * sysdeps/i386/tls.h (INSTALL_DTV): Add parens.
5679         (THREAD_SELF, THREAD_DTV, INSTALL_NEW_DTV): No `header.data.' prefix.
5680         * sysdeps/x86_64/tls.h: Likewise.
5681         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h
5682         (SINGLE_THREAD_P): Likewise.
5683         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h
5684         (SINGLE_THREAD_P): Likewise.
5685         * sysdeps/i386/tls.h (tcbhead_t): Remove `list' member.
5686         * sysdeps/s390/tls.h (tcbhead_t): Likewise.
5687
5688 2003-03-09  Ulrich Drepper  <drepper@redhat.com>
5689
5690         * sysdeps/unix/sysv/linux/x86_64/lowlevelcond.h: New file.
5691
5692         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: New file.
5693         * sysdeps/unix/sysv/linux/x86_64/fork.c: New file.
5694
5695         * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Fix many
5696         leftovers from the ia32 code.
5697
5698         * sysdeps/unix/sysv/linux/i386/pthread_once.S: Remove unneccessary
5699         memory load.
5700         (clear_once_control): Don't load %esi.
5701
5702         * sysdeps/x86_64/tls.h: Remove all traces of segment descriptor
5703         handling.
5704
5705         * sysdeps/unix/sysv/linux/x86_64/fork.c: New file.
5706
5707         * sysdeps/unix/sysv/linux/s390/createthread.c: Moved to...
5708         * sysdeps/unix/sysv/linux/createthread.c: ...here.
5709
5710         * Makefile (tests): Add tst-cond10.
5711         * tst-cond10.c: New file.
5712
5713 2003-03-08  Ulrich Drepper  <drepper@redhat.com>
5714
5715         * tst-tls2.c (do_test): Add TEMP_FAILURE_RETRY around sem_wait call.
5716         * tst-signal3.c (do_test): Likewise.
5717         * tst-sem5.c (do_test): Likewise.
5718         * tst-kill6.c (do_test): Likewise.
5719         * tst-tls3.c (do_test): Likewise.  Include <errno.h>.
5720
5721         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Use add/sub instead
5722         of inc/dec.
5723         * sysdeps/unix/sysv/linux/i386/lowlevelsem.h: Likewise.
5724         * sysdeps/unix/sysv/linux/i386/pthread_once.S: Likewise
5725         * sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: Likewise.
5726         * sysdeps/unix/sysv/linux/i386/i486/sem_post.S: Likewise.
5727         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: Likewise.
5728         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S: Likewise.
5729         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
5730         Likewise.
5731         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
5732         Likewise.
5733         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: Likewise.
5734         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Likewise.
5735         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Likewise.
5736         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S: Likewise.
5737         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S: Likewise.
5738         * sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S: Likewise.
5739         * sysdeps/unix/sysv/linux/i386/i486/lowlevelmutex.S: Likewise.
5740         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: Likewise.
5741
5742         * allocatestack.c (allocate_stack): If mprotect() fails free the
5743         TLS memory.
5744
5745 2003-03-07  Ulrich Drepper  <drepper@redhat.com>
5746
5747         * sysdeps/i386/i486/bits/atomic.h: Fix a few unused definitions.
5748
5749         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Remove all trace of
5750         lll_wake_tid.  This was used only to work around kernel limits in
5751         the early days.
5752         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
5753         * sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: Likewise.
5754         * sysdeps/unix/sysv/linux/sh/lowlevellock.S: Likewise.
5755         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
5756
5757         * init.c (__static_tls_align_m1): Renamed from __static_tls_align.
5758         (__pthread_initialize_minimal_internal): Change initialization of
5759         __static_tls_align_m1 appropriately.
5760         * pthreadP.h (__static_tls_align_m1): Renamed from
5761         __static_tls_align.
5762         * allocatestack.c (allocate_stack): Use __static_tls_align_m1
5763         instead of __static_tls_align-1.
5764
5765 2003-03-04  Ulrich Drepper  <drepper@redhat.com>
5766
5767         * sysdeps/unix/sysv/linux/x86_64/Makefile: New file.
5768
5769         * pthread_create.c: Define __pthread_keys using nocommon
5770         attribute, not by placing it explicitly in bss.
5771         Remove DEFINE_DEALLOC definition.  Not needed anymore.
5772
5773         * allocatestack.c: Define ARCH_MAP_FLAGS if not already defined.
5774         Use it in mmap call to allocate stacks.
5775
5776         * sysdeps/pthread/createthread.c (create_thread): Fix comment.
5777
5778         * pthread_create.c (start_thread): Use THREAD_SETMEM to store
5779         result of the thread function.
5780
5781 2003-03-03  Ulrich Drepper  <drepper@redhat.com>
5782
5783         * sysdeps/unix/sysv/linux/s390/dl-sysdep.h: Removed.  The generic
5784         version is just fine.
5785
5786         * sysdeps/unix/sysv/linux/libc_pthread_init.c
5787         (__pthread_child_handler): Renamed from pthread_child_handler,
5788         exported, and marked hidden.  Change all users.
5789         * sysdeps/unix/sysv/linux/register-atfork.c (free_mem): Do not
5790         free __pthread_child_handler from child list.
5791
5792 2003-03-03  Martin Schwidefsky  <schwidefsky@de.ibm.com>
5793
5794         * atomic.h (atomic_exchange_and_add): Return newval, not oldval.
5795
5796         * sysdeps/pthread/pthread_cond_timedwait.c (__pthread_cond_timedwait):
5797         Fix handling of cancellation and failing pthread_mutex_unlock call.
5798         * sysdeps/pthread/pthread_cond_wait.c (__condvar_cleanup): Likewise.
5799         (__pthread_cond_wait): Likewise.
5800
5801         * sysdeps/pthread/pthread_rwlock_timedrdlock.c
5802         (pthread_rwlock_timedrdlock): Fix clobber of result variable by
5803         lll_futex_timed_wait call.
5804         * sysdeps/pthread/pthread_rwlock_timedwrlock.c
5805         (pthread_rwlock_timedwrlock): Likewise.
5806
5807         * sysdeps/unix/sysv/linux/s390/libc-lowlevellock.c (___lll_lock):
5808         Don't define lll_unlock_wake_cb and ___lll_timedwait_tid in libc.so.
5809         * sysdeps/unix/sysv/linux/s390/lowlevellock.c: Remove XXX comments.
5810
5811         * sysdeps/unix/sysv/linux/s390/sem_post.c (__new_sem_post): Fix
5812         check of lll_futex_wake return value.
5813
5814 2003-03-03  Roland McGrath  <roland@redhat.com>
5815
5816         * forward.c: Fix typo in __pthread_attr_init_2_0 compat_symbol decl.
5817
5818         * sysdeps/pthread/pthread-functions.h (struct pthread_functions):
5819         Argument to ptr___pthread_cleanup_upto is __jmp_buf, not jmp_buf.
5820         * sysdeps/unix/sysv/linux/jmp-unwind.c: Likewise.
5821
5822 2003-03-02  Ulrich Drepper  <drepper@redhat.com>
5823
5824         * sysdeps/pthread/timer_create.c (timer_create): Return correct
5825         error for CPU clocks.
5826
5827         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Define
5828         _POSIX_MONOTONIC_CLOCK.
5829         * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: Likewise.
5830
5831         * tst-cancel4.c (tf_sleep): Lower sleep time a bit to not upset
5832         recent kernels.
5833
5834 2003-03-01  Ulrich Drepper  <drepper@redhat.com>
5835
5836         * descr.h (struct pthread): Move cleanup field to the front.
5837
5838 2003-03-01  Roland McGrath  <roland@redhat.com>
5839
5840         * sem_open.c (sem_open): Braino fix.
5841
5842 2003-03-01  Ulrich Drepper  <drepper@redhat.com>
5843
5844         * sysdeps/i386/tcb-offsets.sym: Add CLEANUP and CLEANUP_PREV.
5845         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Inline
5846         __pthread_cleanup_pop functionality.
5847         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Likewise.
5848
5849         * descr.h (struct pthread): Move tid field to the front now that
5850         it is often used.
5851
5852         * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevelmutex.S
5853         (__lll_mutex_timedlock_wait): Remove.
5854         (__lll_mutex_unlock_wake): Don't save, load, and restore %esi.
5855         * sysdeps/unix/sysv/linux/i386/i486/lowlevelmutex.S
5856         (__lll_mutex_unlock_wake): Don't save, load, and restore %esi.
5857         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S
5858         (lll_unlock_wake_cb): Don't save and restore %esi.
5859         (__lll_unlock_wake): Add alignment.  Don't save, load, and restore
5860         %esi.
5861         (__lll_timedwait_tid): Add alignment.
5862         * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S
5863         (__lll_unlock_wake): Add alignment.  Don't save, load, and restore
5864         %esi.
5865         (__lll_timedwait_tid): Removed.
5866         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S
5867         (__pthread_cond_broadcast): Don't save, load, and restore %esi.
5868         * sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S
5869         (pthread_barrier_wait): Don't save, load, and restore %esi for
5870         last thread.
5871         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S
5872         (__pthread_cond_signal): Don't save, load, and restore %esi.
5873         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S
5874         (__pthread_rwlock_unlock): Don't save, load, and restore %esi.
5875         * sysdeps/unix/sysv/linux/i386/i486/sem_post.S (__new_sem_post):
5876         Don't save, load, and restore %esi.
5877
5878 2003-02-27  Ulrich Drepper  <drepper@redhat.com>
5879
5880         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S:
5881         Release lock before waking up the waiters.
5882
5883         * tst-exit1.c (do_test): Don't start more than one thread in parallel.
5884
5885         * tst-rwlock9.c (writer_thread): Correct adding TIMEOUT.
5886         (reader_thread): Likewise.
5887
5888         * sysdeps/pthread/pthread_rwlock_unlock.c
5889         (__pthread_rwlock_unlock): Release internal lock early.  Don't try
5890         to wake up readers if there are none.
5891
5892         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S:
5893         Release internal lock before wake threads.
5894
5895 2003-02-26  Ulrich Drepper  <drepper@redhat.com>
5896
5897         * Makefile (tests): Add tst-rwlock10 and tst-rwlock11.
5898         * tst-rwlock8.c: Initialize lock with INIT.  Allow INIT to be
5899         predefined.
5900         * tst-rwlock9.c: Likewise.
5901         * tst-rwlock10.c: New file.
5902         * tst-rwlock11.c: New file.
5903
5904         * Makefile (tests): Add tst-dlsym1.
5905         * tst-dlsym1.c: New file.
5906
5907         * init.c (__pthread_initialize_minimal_internal): Set
5908         GL(dl_error_catch_tsd) to __libc_dl_error_tsd.
5909         * Versions (libc:GLIBC_PRIVATE): Export __libc_dl_error_tsd.
5910
5911 2003-02-24  Ulrich Drepper  <drepper@redhat.com>
5912
5913         * sem_open.c (sem_open): Fix handling of O_CREAT without O_EXCL.
5914
5915         * tst-cond2.c: Fix sychronization with child.
5916
5917         * tst-rwlock8.c (reader_thread): Remove unused variable.
5918
5919         * Makefile: Add rules to build and run tst-tls3.
5920         * tst-tls3.c: New file.
5921         * tst-tls3mod.c: New file.
5922
5923         * Makefile (tests): Add tst-rwlock8 and tst-rwlock9.
5924         * tst-rwlock8.c: New file.
5925         * tst-rwlock9.c: New file.
5926         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: Fix
5927         complete broken rwlock implementation.
5928         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
5929         Likewise.
5930         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
5931         Likewise.
5932         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S: Likewise.
5933         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: Likewise.
5934         * sysdeps/pthread/pthread_rwlock_rdlock.c: Likewise.
5935         * sysdeps/pthread/pthread_rwlock_timedrdlock.c: Likewise.
5936         * sysdeps/pthread/pthread_rwlock_timedwrlock.c: Likewise.
5937         * sysdeps/pthread/pthread_rwlock_unlock.c: Likewise.
5938         * sysdeps/pthread/pthread_rwlock_wrlock.c: Likewise.
5939
5940 2003-02-23  Roland McGrath  <roland@redhat.com>
5941
5942         * Makefile (nptl-version): Change regexp so case sensitivity is ok.
5943
5944 2003-02-23  Ulrich Drepper  <drepper@redhat.com>
5945
5946         * Makefile (tests): Add tst-context1.
5947         * tst-context1.c: New file.
5948
5949         * Makefile (tests): Add tst-tls1 and tst-tls2.
5950         * tst-tls1.c: New file.
5951         * tst-tls2.c: New file.
5952
5953         * libc-cancellation.c (__libc_enable_asynccancel): Correct test
5954         for failed cmpxchg.
5955
5956         * pthread_create.c (start_thread): Set EXITING_BIT early.
5957
5958         * sysdeps/i386/tls.h (THREAD_GETMEM): Mark asm as volatile.
5959         (THREAD_GETMEM_NC): Likewise.
5960
5961 2003-02-22  Ulrich Drepper  <drepper@redhat.com>
5962
5963         * sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S: Shave
5964         off 3 more bytes by using offset-less instructions when possible.
5965
5966         * Makefile: Add dependency for $(objpfx)version.d.
5967
5968         * eintr.c (eintr_source): Add unnecessary return but the compiler
5969         insists.
5970
5971         * tst-kill3.c: Include <unistd.h>.
5972
5973 2003-02-21  Roland McGrath  <roland@redhat.com>
5974
5975         * pthread_create.c (start_thread): Call __libc_thread_freeres.
5976
5977 2003-02-21  Ulrich Drepper  <drepper@redhat.com>
5978
5979         * Makefile (tests): Add tst-eintr1.
5980         (distribute): Add eintr.c.
5981         * tst-eintr1.c: New file.
5982         * eintr.c: New file.
5983
5984         * pthread_cancel.c (pthread_cancel): Use tkill directly.
5985
5986         * sysdeps/unix/sysv/linux/pthread_kill.c (__pthread_kill):
5987         Disallow sending SIGCANCEL.
5988
5989         * Makefile (tests): Remove tst-basic7.  Add tst-kill1, tst-kill2,
5990         tst-kill3, tst-kill4, tst-kill5, tst-kill6.
5991         * tst-kill1.c: New file.
5992         * tst-kill2.c: New file.
5993         * tst-kill3.c: New file.
5994         * tst-kill5.c: New file.
5995         * tst-kill6.c: New file.
5996         * tst-basic7.c: Renamed to...
5997         * tst-kill4.c: ...this.
5998
5999 2003-02-21  Roland McGrath  <roland@redhat.com>
6000
6001         * Makefile (install-lib-ldscripts): New variable.
6002
6003 2003-02-21  Ulrich Drepper  <drepper@redhat.com>
6004
6005         * pthreadP.h: Define INVALID_TD_P and INVALID_NOT_TERMINATED_TD_P.
6006         * pthread_cancel.c: Use INVALID_TD_P.
6007         * pthread_detach.c: Likewise.
6008         * pthread_getschedparam.c: Likewise.
6009         * pthread_setschedparam.c: Likewise.
6010         * sysdeps/pthread/pthread_getcpuclockid.c: Likewise.
6011         * sysdeps/unix/sysv/linux/pthread_kill.c: Likewise.
6012         * pthread_join.c: Use INVALID_NOT_TERMINATED_TD_P.
6013         * pthread_timedjoin.c: Likewise.
6014
6015         * tst-basic7.c: Include <signal.h>.
6016
6017         * pthread_join.c (pthread_join): Limited checking for invalid
6018         descriptors.
6019         * pthread_timedjoin.c (pthread_timedjoin_np): Likewise.
6020
6021 2003-02-20  Ulrich Drepper  <drepper@redhat.com>
6022
6023         * pthread_create.c (deallocate_tsd): Reset found_nonzero at the
6024         beginning of the loop.  Clear the entire first block of TSD.
6025         * Makefile (tests): Add tst-key4.
6026         * tst-key4.c: New file.
6027
6028 2003-02-18  Ulrich Drepper  <drepper@redhat.com>
6029
6030         * Makefile (tests): Add tst-basic7.
6031         * tst-basic7.c: New file.
6032
6033         * pthread_create.c (deallocate_tsd): Mark as internal_function.
6034         Add some more __builtin_expect.
6035
6036         * pthreadP.h: Define dummy version of DEBUGGING_P.
6037
6038 2003-02-17  Ulrich Drepper  <drepper@redhat.com>
6039
6040         * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: Remnove
6041         _POSIX_THREAD_PRIORITY_SCHEDULING.
6042         * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: Remove
6043         _XOPEN_REALTIME_THREADS.
6044         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Likewise.
6045
6046         * sysdeps/unix/sysv/linux/pthread_kill.c (__pthread_kill): The
6047         kernel returns EINVAL for PID <= 0, work around it.
6048
6049         * Makefile (tests): Add tst-signal5.
6050         * tst-signal5.c: New file.
6051
6052         * sysdeps/unix/sysv/linux/bits/local_lim.h: Define TTY_NAME_MAX
6053         and LOGIN_NAME_MAX.
6054
6055         * tst-cancel1.c (tf): Block all signals.
6056
6057         * Makefile (tests): Add tst-basic6.
6058         * tst-basic6.c: New file.
6059
6060         * tst-basic1.c: Add test for process ID.
6061
6062         * Makefile (tests): Add tst-cancel10.
6063         * tst-cancel10.c: New file.
6064
6065         * Makefile (tests): Add tst-signal4.
6066         * tst-signal4.c: New file.
6067
6068         * sysdeps/pthread/pthread_sigmask.c (pthread_sigmask): Use
6069         __sigismember instead of sigismember.  Add __builtin_expect.
6070
6071 2003-02-16  Ulrich Drepper  <drepper@redhat.com>
6072
6073         * tst-attr1.c (do_test): Add tests for pthread_setcanceltype,
6074         pthread_setcancelstate, and pthread_rwlock_setpshared.
6075
6076         * tst-cancel7.c (do_test): Make sure the pid file exists before
6077         canceling the thread.
6078
6079         * tst-rwlock6.c: More pthread_rwlock_timedwrlock and
6080         pthread_rwlock_timedrdlock tests.
6081         * tst-rwlock7.c: More pthread_rwlock_timedwrlock tests.
6082         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
6083         Check for invalid tv_nsec field.
6084         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
6085         Likewise.
6086
6087         * pthread_mutex_trylock.c (__pthread_mutex_trylock): Protect
6088         recursive mutex of overflow.
6089
6090         * tst-attr1.c (do_test): Add test for pthread_mutexattr_setpshared.
6091
6092         * libc-cancellation.c (__libc_enable_asynccancel): Rewrite to avoid
6093         going into an endless loop.
6094         * Makefile (tests): Add tst-cancel9.
6095         * tst-cancel9.c: New file.
6096
6097         * pthread_cancel.c (pthread_cancel): Use the result of __pthread_kill.
6098
6099 2003-02-15  Ulrich Drepper  <drepper@redhat.com>
6100
6101         * tst-mutex5.c (do_test): Add more timedlock tests.
6102
6103         * tst-mutex2.c: Tests of trylock and unlock with ERROR mutexes.
6104         * tst-mutex3.c (do_test): Add tests for trylock with RECURSIVE mutexes.
6105
6106         * sysdeps/unix/sysv/linux/pthread_kill.c (__pthread_kill): Don't
6107         use INLINE_SYSCALL.  Error number is returned, not -1.
6108
6109         * pthreadP.h: Mark declarations of __find_in_stack_list, __free_tcb,
6110         and __deallocate_stack with internal_function.
6111         * pthread_create.c: Adjust definitions appropriately.
6112         * allocatestack.c: Likewise.
6113
6114         * pthread_join.c: Add one more __builtin_expect.
6115         * pthread_timedjoin.c: Likewise.
6116
6117         * pthread_getspecific.c (__pthread_getspecific): Clear data->data
6118         not data of sequence number does not match.
6119         Add one __builtin_expect.
6120
6121         * Makefile (tests): Add tst-clock1.
6122         * tst-clock1.c: New file.
6123
6124         * pthread_setconcurrency.c (pthread_setconcurrency): Fail for
6125         negative arguments.
6126         * Makefile (tests): Add tst-basic5.
6127         * tst-basic5.c: New file.
6128
6129 2003-02-14  Ulrich Drepper  <drepper@redhat.com>
6130
6131         * Makefile (tests): Add tst-basic4.
6132         * tst-basic4.c: New file.
6133
6134         * pthreadP.h: Add declaraction for __nptl_nthreads.
6135         * pthread_create.c: Define __nptl_nthreads
6136         (start_thread): Increment __nptl_nthreads at beginning.  Decrement
6137         after thread is done.  If then zero, call exit(0).
6138         * sysdeps/pthread/pthread-functions.h (struct pthread_functions):
6139         Add ptr_nthreads.  Define HAVE_PTR_NTHREADS.
6140         * init.c (pthread_functions): Initialize ptr_nthreads.
6141         * allocatestack.c (nptl_nthreads): Remove definition and all uses.
6142         (__reclaim_stacks): Decrement __nptl_nthreads.
6143         * sysdeps/pthread/Makefile [$(subdir)==csu] (CFLAGS-libc-start.c):
6144         Define.
6145         * Makefile (tests): Add tst-basic3.
6146         * tst-basic3.c: New file.
6147
6148         * descr.h: Define CANCELING_BIT and CANCELING_BITMASK.  Introduce
6149         after CANCELTYPE_BIT, move the other bits up.  Update CANCEL_RESTMASK.
6150         * init.c (sigcancel_handler): Also set CANCELING_BITMASK bit in newval.
6151         * pthread_cancel.c (pthread_cancel): Likewise.  Also set CANCELING_BIT
6152         if asynchronous canceling is enabled.
6153         * pthread_join.c (pthread_join): When recognizing circular joins,
6154         take into account the other thread might be already canceled.
6155         * Makefile (tests): Add tst-join5.
6156         * tst-join5.c: New file.
6157
6158         * Makefile (tests): Add tst-join4.
6159         * tst-join4.c: New file.
6160
6161 2003-02-13  Ulrich Drepper  <drepper@redhat.com>
6162
6163         * tst-cond4.c (main): Add test of pthread_attr_getpshared.
6164
6165 2003-02-13  Martin Schwidefsky  <schwidefsky@de.ibm.com>
6166
6167         * sysdeps/s390/tls.h (THREAD_GETMEM, THREAD_GETMEM_NC, THREAD_SETMEM,
6168         THREAD_SETMEM_NC): Use passed descr instead of THREAD_SELF.
6169         * sysdeps/unix/sysv/linux/s390/jmp-unwind.c (_longjmp_unwind): Avoid
6170         warning.
6171         * sysdeps/unix/sysv/linux/s390/lowlevellock.c: Include <sys/time.h>
6172         to avoid warning.
6173         * sysdeps/unix/sysv/linux/s390/sem_post.c (__new_sem_post): Return
6174         error if lll_futex_wake failed.
6175
6176 2003-02-13  Ulrich Drepper  <drepper@redhat.com>
6177
6178         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Fix
6179         handling of cancellation and failung pthread_mutex_unlock call.
6180         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Likewise.
6181         * Makefile (tests): Add tst-cond8 and tst-cond9.
6182         * tst-cond8.c: New file.
6183         * tst-cond9.c: New file.
6184
6185         * tst-cond7.c (do_test): Unlock the mutex before canceling the thread.
6186
6187         * sysdeps/pthread/pthread.h: Add missing initializers.  Protect
6188         non-standard initializers with __USE_GNU.
6189
6190         * Makefile (tests): Add tst-cleanup3.
6191         * tst-cleanup3.c: New file.
6192
6193 2003-02-12  Ulrich Drepper  <drepper@redhat.com>
6194
6195         * Makefile (tests): Add tst-attr1 and tst-attr2.
6196         * tst-attr1.c: New file.
6197         * tst-attr2.c: New file.
6198
6199         * Makefile: Add rules to build and run tst-atfork2 test.
6200         * tst-atfork2.c: New file.
6201         * tst-atfork2mod.c: New file.
6202
6203         * sysdeps/unix/sysv/linux/unregister-atfork.c
6204         (__unregister_atfork): Free the memory allocated for the handlers
6205         after removing them from the lists.
6206
6207         * sysdeps/unix/sysv/linux/register-atfork.c: Define memeory
6208         cleanup function.
6209
6210         * tst-atfork1.c (do_test): Wait for the child we forked.
6211         Report error in child.
6212
6213         * sysdeps/unix/sysv/linux/fork.c (__libc_fork): Fix comment.
6214
6215         * sysdeps/pthread/Makefile: Define CFLAGS-confstr.c.
6216
6217 2003-02-10  Ulrich Drepper  <drepper@redhat.com>
6218
6219         * Makefile (tests): Add tst-cancel8.
6220         * tst-cancel8.c: New file.
6221
6222         * sysdeps/unix/sysv/linux/i386/pthread_once.S (clear_once_control): Fix
6223         clearing of control variable.
6224         * Makefile (tests): Add tst-once3 and tst-once4.
6225         * tst-once3.c: New file.
6226         * tst-once4.c: New file.
6227
6228 2003-02-08  kaz Kojima  <kkojima@rr.iij4u.or.jp>
6229
6230         * sysdeps/sh/Makefile: New file.
6231         * sysdeps/sh/bits/atomic.h: New file.
6232         * sysdeps/sh/pthread_spin_init.c: New file.
6233         * sysdeps/sh/pthread_spin_lock.c: New file.
6234         * sysdeps/sh/pthread_spin_trylock.S: New file.
6235         * sysdeps/sh/pthread_spin_unlock.S: New file.
6236         * sysdeps/sh/pthreaddef.h: New file.
6237         * sysdeps/sh/tcb-offsets.sym: New file.
6238         * sysdeps/sh/td_ta_map_lwp2thr.c: New file.
6239         * sysdeps/sh/tls.h: New file.
6240         * sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h: New file.
6241         * sysdeps/unix/sysv/linux/sh/bits/semaphore.h: New file.
6242         * sysdeps/unix/sysv/linux/sh/createthread.c: New file.
6243         * sysdeps/unix/sysv/linux/sh/fork.c: New file.
6244         * sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: New file.
6245         * sysdeps/unix/sysv/linux/sh/libc-lowlevelmutex.S: New file.
6246         * sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h: New file.
6247         * sysdeps/unix/sysv/linux/sh/lowlevelcond.h: New file.
6248         * sysdeps/unix/sysv/linux/sh/lowlevellock.S: New file.
6249         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: New file.
6250         * sysdeps/unix/sysv/linux/sh/lowlevelmutex.S: New file.
6251         * sysdeps/unix/sysv/linux/sh/lowlevelrwlock.h: New file.
6252         * sysdeps/unix/sysv/linux/sh/pt-initfini.c: New file.
6253         * sysdeps/unix/sysv/linux/sh/pt-vfork.S: New file.
6254         * sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: New file.
6255         * sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: New file.
6256         * sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: New file.
6257         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: New file.
6258         * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: New file.
6259         * sysdeps/unix/sysv/linux/sh/pthread_once.S: New file.
6260         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: New file.
6261         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S: New file.
6262         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S: New file.
6263         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: New file.
6264         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: New file.
6265         * sysdeps/unix/sysv/linux/sh/sem_post.S: New file.
6266         * sysdeps/unix/sysv/linux/sh/sem_timedwait.S: New file.
6267         * sysdeps/unix/sysv/linux/sh/sem_trywait.S: New file.
6268         * sysdeps/unix/sysv/linux/sh/sem_wait.S: New file.
6269         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: New file.
6270
6271 2003-02-08  Ulrich Drepper  <drepper@redhat.com>
6272
6273         * tst-cond2.c: Rearrange code to not rely on behavior undefined
6274         according to POSIX.
6275
6276         * tst-basic2.c (do_test): Lock mutex before creating the thread.
6277
6278 2003-02-07  Ulrich Drepper  <drepper@redhat.com>
6279
6280         * sysdeps/x86_64/tls.h: Remove unnecessary macros, left over from x86.
6281         (TLS_GET_FS): New #define.
6282         (TLS_SET_FS): New #define.
6283         Correct value of __NR_set_thread_area.
6284
6285         * sysdeps/x86_64/td_ta_map_lwp2thr.c: New file.
6286
6287 2003-02-06  Ulrich Drepper  <drepper@redhat.com>
6288
6289         * Makefile (tests): Add tst-popen1.
6290         * tst-popen1.c: New file.
6291
6292         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Remove wrong
6293         but inactive generalization.
6294         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Likewise.
6295         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S: Likewise.
6296         Minor optimization, remove one instruction.
6297         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S: Likewise.
6298
6299 2003-02-04  Martin Schwidefsky  <schwidefsky@de.ibm.com>
6300
6301         * sysdeps/unix/sysv/linux/s390/fork.c: Correct order of parameters.
6302
6303 2003-01-31  Martin Schwidefsky  <schwidefsky@de.ibm.com>
6304
6305         * init.c (__NR_set_tid_address): Add #ifdef for s390.
6306         * sysdeps/pthread/pthread_barrier_wait.c: New file.
6307         * sysdeps/pthread/pthread_cond_broadcast.c: New file.
6308         * sysdeps/pthread/pthread_cond_signal.c: New file.
6309         * sysdeps/pthread/pthread_cond_timedwait.c: New file.
6310         * sysdeps/pthread/pthread_cond_wait.c: New file.
6311         * sysdeps/pthread/pthread_rwlock_rdlock.c: New file.
6312         * sysdeps/pthread/pthread_rwlock_timedrdlock.c: New file.
6313         * sysdeps/pthread/pthread_rwlock_timedwrlock.c: New file.
6314         * sysdeps/pthread/pthread_rwlock_unlock.c: New file.
6315         * sysdeps/pthread/pthread_rwlock_wrlock.c: New file.
6316         * sysdeps/s390/Makefile: New file.
6317         * sysdeps/s390/bits/atomic.h: New file.
6318         * sysdeps/s390/pthread_spin_init.c: New file.
6319         * sysdeps/s390/pthread_spin_lock.c: New file.
6320         * sysdeps/s390/pthread_spin_trylock.c: New file.
6321         * sysdeps/s390/pthread_spin_unlock.c: New file.
6322         * sysdeps/s390/pthreaddef.h: New file.
6323         * sysdeps/s390/tcb-offsets.sym: New file.
6324         * sysdeps/s390/td_ta_map_lwp2thr.c: New file.
6325         * sysdeps/s390/tls.h: New file.
6326         * sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: New file.
6327         * sysdeps/unix/sysv/linux/s390/bits/semaphore.h: New file.
6328         * sysdeps/unix/sysv/linux/s390/createthread.c: New file.
6329         * sysdeps/unix/sysv/linux/s390/dl-sysdep.h: New file.
6330         * sysdeps/unix/sysv/linux/s390/fork.c: New file.
6331         * sysdeps/unix/sysv/linux/s390/jmp-unwind.c: New file.
6332         * sysdeps/unix/sysv/linux/s390/libc-lowlevellock.c: New file.
6333         * sysdeps/unix/sysv/linux/s390/libc-lowlevelmutex.c: New file.
6334         * sysdeps/unix/sysv/linux/s390/lowlevellock.c: New file.
6335         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: New file.
6336         * sysdeps/unix/sysv/linux/s390/lowlevelmutex.c: New file.
6337         * sysdeps/unix/sysv/linux/s390/lowlevelsem.h: New file.
6338         * sysdeps/unix/sysv/linux/s390/pthread_once.c: New file.
6339         * sysdeps/unix/sysv/linux/s390/s390-32/pt-initfini.c: New file.
6340         * sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S: New file.
6341         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: New file.
6342         * sysdeps/unix/sysv/linux/s390/s390-64/pt-initfini.c: New file.
6343         * sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S: New file.
6344         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: New file.
6345         * sysdeps/unix/sysv/linux/s390/sem_post.c: New file.
6346         * sysdeps/unix/sysv/linux/s390/sem_timedwait.c: New file.
6347         * sysdeps/unix/sysv/linux/s390/libc-lowlevellock.c: New file.
6348         * sysdeps/unix/sysv/linux/s390/sem_wait.c: New file.
6349
6350 2003-02-04  Ulrich Drepper  <drepper@redhat.com>
6351
6352         * atomic.h: Add a couple more default implementations.
6353         (atomic_compare_and_exchange_acq): Use
6354         __arch_compare_and_exchange_32_acq in return value definition.  It
6355         always exists.
6356         (atomic_bit_set): Renamed from atomic_set_bit.
6357         Add missing atomic_ prefixes.
6358
6359         * sysdeps/pthread/bits/libc-lock.h (__libc_once): In case no
6360         thread library is available, use correct value to mark initialized
6361         once variable.
6362
6363 2003-02-03  Ulrich Drepper  <drepper@redhat.com>
6364
6365         * allocatestack.c (allocate_stack): Use __getpagesize instead of
6366         __sysconf to determine pagesize.
6367
6368         * pthread_create.c: Include <atomic.h>.
6369         * allocatestack.c (allocate_stack): Implement coloring of the
6370         allocated stack memory.  Rename pagesize to pagesize_m1.  It's the
6371         size minus one.  Adjust users.
6372         * sysdeps/i386/i686/Makefile: New file.
6373
6374 2003-02-02  Ulrich Drepper  <drepper@redhat.com>
6375
6376         * allocatestack.c: Improve comment throughout the file.
6377
6378         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S
6379         (__lll_lock_wait): Add branch prediction.
6380         * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S
6381         (__lll_lock_wait): Likewise.
6382         (lll_unlock_wake_cb): Removed.
6383
6384 2003-01-31  Ulrich Drepper  <drepper@redhat.com>
6385
6386         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Remove
6387         _POSIX_THREAD_PRIORITY_SCHEDULING.
6388
6389 2003-01-30  Jakub Jelinek  <jakub@redhat.com>
6390
6391         * sysdeps/pthread/pthread-functions.h (struct pthread_functions):
6392         Fix return type of ptr___pthread_getspecific.
6393
6394 2003-01-29  Ulrich Drepper  <drepper@redhat.com>
6395
6396         * Makefile (tests): Add tst-umask1.
6397         (tst-umask1-ARGS): Define.
6398         * tst-umask1.c: New file.
6399
6400 2003-01-28  Ulrich Drepper  <drepper@redhat.com>
6401
6402         * Makefile (libpthread-routines): Remove lowlevelrwlock.  Add
6403         pthread_rwlock_rdlock, pthread_rwlock_timedrdlock,
6404         pthread_rwlock_wrlock, pthread_rwlock_timedwrlock, and
6405         pthread_rwlock_unlock.
6406         * sysdeps/unix/sysv/linux/i386/i486/lowlevelrwlock.S: Removed
6407         * sysdeps/unix/sysv/linux/i386/i586/lowlevelrwlock.S: Removed
6408         * sysdeps/unix/sysv/linux/i386/i686/lowlevelrwlock.S: Removed
6409         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: New file.
6410         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
6411         New file.
6412         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: New file.
6413         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
6414         New file.
6415         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S: New file.
6416         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S: New file.
6417         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S:
6418         New file.
6419         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S: New file.
6420         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S:
6421         New file.
6422         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S: New file.
6423         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S: New file.
6424         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S:
6425         New file.
6426         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S: New file.
6427         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S:
6428         New file.
6429         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S: New file.
6430
6431         * Makefile (libpthread-routines): Remove lowlevelcond and
6432         lowlevelsem.  Add sem_wait, sem_trywait, sem_timedwait, sem_post,
6433         pthread_cond_wait, pthread_cond_timedwait, pthread_cond_signal,
6434         and pthread_cond_broadcast.
6435         * sysdeps/unix/sysv/linux/i386/i486/lowlevelsem.S: Removed
6436         * sysdeps/unix/sysv/linux/i386/i486/lowlevelcond.S: Removed
6437         * sysdeps/unix/sysv/linux/i386/i586/lowlevelsem.S: Removed
6438         * sysdeps/unix/sysv/linux/i386/i586/lowlevelcond.S: Removed
6439         * sysdeps/unix/sysv/linux/i386/i686/lowlevelsem.S: Removed
6440         * sysdeps/unix/sysv/linux/i386/i686/lowlevelcond.S: Removed
6441         * sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: New file.
6442         * sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: New file.
6443         * sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: New file.
6444         * sysdeps/unix/sysv/linux/i386/i486/sem_post.S: New file.
6445         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: New file.
6446         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: New file.
6447         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S: New file.
6448         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S: New file.
6449         * sysdeps/unix/sysv/linux/i386/i586/sem_wait.S: New file.
6450         * sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S: New file.
6451         * sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S: New file.
6452         * sysdeps/unix/sysv/linux/i386/i586/sem_post.S: New file.
6453         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S: New file.
6454         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S: New file.
6455         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S: New file.
6456         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S: New file.
6457         * sysdeps/unix/sysv/linux/i386/i686/sem_wait.S: New file.
6458         * sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S: New file.
6459         * sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S: New file.
6460         * sysdeps/unix/sysv/linux/i386/i686/sem_post.S: New file.
6461         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S: New file.
6462         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S: New file.
6463         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S: New file.
6464         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S: New file.
6465         * sysdeps/unix/sysv/linux/i386/lowlevelcond.h: New file.
6466
6467         * sysdeps/unix/sysv/linux/i386/createthread.c: Define
6468         PREPARE_CREATE and TLS_VALUE with x86-specific bits.  All the rest
6469         of the code is moved to ...
6470         * sysdeps/pthread/createthread.c: ...here.  New file.
6471
6472 2003-01-27  Ulrich Drepper  <drepper@redhat.com>
6473
6474         * sysdeps/unix/sysv/linux/i386/i486/lowlevelsem.S
6475         (__new_sem_post): Clear %eax before returning.
6476         Reported by MAEDA Naoaki <maeda.naoaki@jp.fujitsu.com>.
6477
6478         * Makefile (tests): Add tst-cleanup2.
6479         * tst-cleanup2.c: New file.
6480
6481         * sysdeps/pthread/bits/libc-lock.h (__libc_cleanup_region_start):
6482         Interpret first parameter correctly.
6483
6484 2003-01-17  Ulrich Drepper  <drepper@redhat.com>
6485
6486         * Makefile (headers): Add bits/semaphore.h.
6487
6488 2003-01-16  Jakub Jelinek  <jakub@redhat.com>
6489
6490         * sysdeps/i386/tls.h (INIT_SYSINFO): Initialize _head->sysinfo even
6491         if not SHARED.
6492
6493 2003-01-14  Ulrich Drepper  <drepper@redhat.com>
6494
6495         * sem_open.c (sem_open): Return SEM_FAILED if existing semaphore
6496         must be used and mapping failed.
6497         Reported by Luke Elliott <luke.elliott@activfinancial.com>.
6498
6499         * Makefile (CFLAGS-pthread_self.os): Define this, not
6500         CFLAGS-pthread_self.c.
6501
6502 2003-01-13  Ulrich Drepper  <drepper@redhat.com>
6503
6504         * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: Don't export
6505         lll_unlock_wake_cb.
6506
6507         * Makefile (libpthread-routines): Add version.  Add rules to build
6508         version.os and banner.h.
6509         * version.c: New file.
6510
6511 2003-01-13  Jakub Jelinek  <jakub@redhat.com>
6512
6513         * pthread_mutex_lock.c (__pthread_mutex_lock_internal): Make
6514         the alias unconditional.
6515         * pthread_mutex_unlock.c  (__pthread_mutex_unlock_internal): Likewise.
6516
6517 2003-01-13  Ulrich Drepper  <drepper@redhat.com>
6518
6519         * Makefile (CFLAGS-pthread_self.c): New definition.
6520
6521 2003-01-06  Jakub Jelinek  <jakub@redhat.com>
6522
6523         * sysdeps/pthread/pthread_sigmask.c (pthread_sigmask): Add
6524         INTERNAL_SYSCALL_DECL, add err argument to INTERNAL_SYSCALL* macros.
6525         * sysdeps/unix/sysv/linux/raise.c (raise): Likewise.
6526         * init.c (__pthread_initialize_minimal_internal): Likewise.
6527
6528 2003-01-07  Jakub Jelinek  <jakub@redhat.com>
6529
6530         * pthreadP.h (__pthread_cond_timedwait): Add prototype.
6531
6532         * sysdeps/unix/sysv/linux/i386/dl-sysdep.h
6533         (RTLD_CORRECT_DYNAMIC_WEAK): Remove.
6534         (DL_SYSINFO_IMPLEMENTATION): Change into .text section and back.
6535         * sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h
6536         (RTLD_CORRECT_DYNAMIC_WEAK): Remove.
6537         (DL_SYSINFO_IMPLEMENTATION): Change into .text section and back.
6538
6539 2003-01-06  Jakub Jelinek  <jakub@redhat.com>
6540
6541         * pthreadP.h (LIBC_CANCEL_HANDLED): Define.
6542         * pt-system.c (LIBC_CANCEL_HANDLED): Add.
6543         * tst-cancel-wrappers.sh: Remove all exceptions.
6544
6545 2003-01-05  Ulrich Drepper  <drepper@redhat.com>
6546
6547         * tst-cancel-wrappers.sh: Invoke gawk not awk since we use GNU awk
6548         features.  Reported by Marijn Ros <marijn@mad.scientist.com>.
6549
6550         * sysdeps/unix/sysv/linux/jmp-unwind.c: Include <pthread-functions.h>.
6551         Use __libc_pthread_functions array if SHARED.
6552
6553         * pthreadP.h: Move pthread_cond_2_0_t definition to...
6554         * sysdeps/unix/sysv/linux/internaltypes.h: ...here.
6555
6556         * sysdeps/pthread/bits/libc-lock.h (__libc_ptf_call): New #define.
6557         (__libc_rwlock_rdlock, __libc_rwlock_wrlock, __libc_rwlock_unlock,
6558         __libc_key_create, __libc_getspecific, __libc_setspecific): Use
6559         __libc_ptf_call instead of __libc_maybe_call.
6560         (PTF): New #define.
6561         (__libc_cleanup_region_start): Wrap function name with PTF call.
6562         (__libc_cleanup_region_end): Likewise.
6563         (__libc_cleanup_end): Likewise.
6564
6565         * pthread_getspecific.c: Add __pthread_getspecific_internal alias.
6566         * pthread_setspecific.c: Add __pthread_setspecific_internal alias.
6567         * pthread_key_create.c: Add __pthread_key_create_internal alias.
6568         * pthreadP.h: Add prototypes.
6569
6570         * sysdeps/unix/sysv/linux/i386/i486/lowlevelrwlock.S: Add
6571         __pthread_rwlock_rdlock, __pthread_rwlock_wrlock, and
6572         __pthread_rwlock_unlock aliases.
6573         * pthreadP.h: Add prototypes for new aliases.
6574
6575         * pthreadP.h (struct pthead_functions): Moved to...
6576         * sysdeps/pthread/pthread-functions.h: ...here.  New file.
6577         * init.c (pthread_functions): Add initializers for new elements.
6578
6579         * cleanup_defer.c: Add __pthread_cleanup_push_defer and
6580         __pthread_cleanup_pop_restore aliases.
6581         * pthreadP.h: Add prototypes.
6582
6583         * cleanup.c: Rename _GI_pthread_cleanup_push to __pthread_cleanup_push
6584         and _GI_pthread_cleanup_pop to __pthread_cleanup_pop.
6585         * sysdeps/unix/sysv/linux/i386/i486/lowlevelcond.S: Adjust caller.
6586         * sysdeps/unix/sysv/linux/i386/pthread_once.S: Likewise.
6587         * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Likewise.
6588         * pthreadP.h: Adjust prototypes and callers.
6589
6590 2003-01-04  Ulrich Drepper  <drepper@redhat.com>
6591
6592         * Makefile (tests): Add tst-cancel7.
6593         (tst-cancel7-ARGS): New variable.
6594         * tst-cancel7.c: New file.
6595
6596         * old_pthread_cond_broadcast.c: Optimize initialization a bit to work
6597         around gcc defficiencies.
6598         * old_pthread_cond_signal.c: Likewise.
6599         * old_pthread_cond_timedwait.c: Likewise.
6600         * old_pthread_cond_wait.c: Likewise.
6601
6602         * pthreadP.h (pthread_cond_2_0_t): Remove unneeded lock element.
6603
6604 2003-01-03  Ulrich Drepper  <drepper@redhat.com>
6605
6606         * Makefile (tests): Add tst-cond7.
6607         * tst-cond7.c: New file.
6608
6609         * sysdeps/unix/sysv/linux/i386/i486/lowlevelcond.S
6610         (condvar_cleanup): Get condvar address from the right place.
6611
6612         * atomic.h: Correct definitions of atomic_full_barrier,
6613         atomic_read_barrier, atomic_write_barrier.
6614
6615         * old_pthread_cond_broadcast.c: Make memory allocate and initialization
6616         race-free.
6617         * old_pthread_cond_signal.c: Likewise.
6618         * old_pthread_cond_timedwait.c: Likewise.
6619         * old_pthread_cond_wait.c: Likewise.
6620
6621 2003-01-03  Jakub Jelinek  <jakub@redhat.com>
6622
6623         * Makefile ($(objpfx)libpthread.so): Depend on ld.so.
6624
6625 2003-01-03  Ulrich Drepper  <drepper@redhat.com>
6626
6627         * pthreadP.h (pthread_cond_2_0_t): New type.
6628         (struct pthread_functions): Use new type for 2.0 condvar callbacks.
6629         Use new type for the 2.0 condvar function prototypes.
6630         * forward.c: Use pthread_cond_2_0_t for 2.0 condvar functions.
6631         * old_pthread_cond_init.c: Use pthread_cond_2_0_t for condvar
6632         parameter.
6633         * old_pthread_cond_destroy.c: Likewise.
6634         * old_pthread_cond_broadcast.c: Likewise.  Lock appropriately.
6635         * old_pthread_cond_signal.c: Likewise.
6636         * old_pthread_cond_timedwait.c: Likewise.
6637         * old_pthread_cond_wait.c: Likewise.
6638
6639         * sysdeps/unix/sysv/linux/i386/i486/lowlevelcond.S
6640         (__pthread_cond_wait): Don't save cancellation mode and seq value
6641         in same location.
6642
6643         * herrno.c (__h_errno_location): Don't define as weak.
6644
6645 2003-01-02  Jakub Jelinek  <jakub@redhat.com>
6646
6647         * Versions [libc] (GLIBC_2.3.2): Export pthread_cond_broadcast,
6648         pthread_cond_destroy, pthread_cond_init, pthread_cond_signal
6649         and pthread_cond_wait.
6650         * old_pthread_cond_broadcast.c (__old_pthread_cond_broadcast):
6651         Renamed to...
6652         (__pthread_cond_broadcast_2_0): ... this.
6653         * old_pthread_cond_destroy.c (__old_pthread_cond_destroy):
6654         Renamed to...
6655         (__pthread_cond_destroy_2_0): ... this.
6656         * old_pthread_cond_init.c (__old_pthread_cond_init):
6657         Renamed to...
6658         (__pthread_cond_init_2_0): ... this.
6659         * old_pthread_cond_signal.c (__old_pthread_cond_signal):
6660         Renamed to...
6661         (__pthread_cond_signal_2_0): ... this.
6662         * old_pthread_cond_wait.c (__old_pthread_cond_wait):
6663         Renamed to...
6664         (__pthread_cond_wait_2_0): ... this.
6665         * pthread_cond_destroy.c: Include shlib-compat.h.
6666         (pthread_cond_destroy): Change strong_alias into versioned_symbol.
6667         * pthread_cond_init.c: Include shlib-compat.h.
6668         (pthread_cond_init): Change strong_alias into versioned_symbol.
6669         * pthreadP.h (struct pthread_functions): Rename ptr_pthread_cond_*
6670         fields to ptr___pthread_cond_* and add ptr___pthread_cond_*_2_0
6671         fields.
6672         (__pthread_cond_broadcast_2_0, __pthread_cond_destroy_2_0,
6673         __pthread_cond_init_2_0, __pthread_cond_signal_2_0,
6674         __pthread_cond_wait_2_0): New prototypes.
6675         (__old_pthread_cond_broadcast, __old_pthread_cond_destroy,
6676         __old_pthread_cond_init, __old_pthread_cond_signal,
6677         __old_pthread_cond_wait): Removed.
6678         * init.c: Include shlib-compat.h.
6679         (pthread_functions): Guard ptr___pthread_attr_init_2_0
6680         initialization with SHLIB_COMPAT (GLIBC_2_0, GLIBC_2_1).
6681         Rename ptr_pthread_cond_* to ptr___pthread_cond_*, initialize
6682         ptr___pthread_cond_*_2_0 fields.
6683         * forward.c: Export both pthread_cond_*@@GLIBC_2.3.2 and
6684         pthread_cond_*@GLIBC_2.0 compatibility symbols.
6685
6686         * sysdeps/pthread/sigaction.c (SIGCANCEL): Only define if
6687         LIBC_SIGACTION was not yet defined.
6688         [!defined LIBC_SIGACTION]: Define LIBC_SIGACTION, #include self.
6689         [!defined LIBC_SIGACTION] (__sigaction): New function and
6690         libc_hidden_weak.
6691         [!defined LIBC_SIGACTION] (sigaction): New weak_alias.
6692         [defined LIBC_SIGACTION]: #include_next <sigaction.c>.
6693
6694 2003-01-02  Jakub Jelinek  <jakub@redhat.com>
6695
6696         * Makefile (CFLAGS-pthread_atfork.c): Add -DNOT_IN_libc.
6697
6698 2003-01-02  Ulrich Drepper  <drepper@redhat.com>
6699
6700         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h (pthread_cond_t):
6701         New, larger type definition.
6702         * sysdeps/unix/sysv/linux/i386/i486/lowlevelcond.S: New condvar
6703         implementation.
6704         * Versions [libpthread]: Add definitions for new pthread_cond_*
6705         interfaces for version GLIBC_2.3.2.
6706         * pthread_cond_init.c: Update initialization for new type definition.
6707         * Makefile (libpthread-routines): Remove pthread_cond_wait,
6708         pthread_cond_timedwait, pthread_cond_signal, and
6709         pthread_cond_broadcast.  Add old_pthread_cond_init,
6710         old_pthread_cond_destroy, old_pthread_cond_wait,
6711         old_pthread_cond_timedwait, old_pthread_cond_signal, and
6712         old_pthread_cond_broadcast.
6713         * old_pthread_cond_broadcast.c: New file.
6714         * old_pthread_cond_destroy.c: New file.
6715         * old_pthread_cond_init.c: New file.
6716         * old_pthread_cond_signal.c: New file.
6717         * old_pthread_cond_timedwait.c: New file.
6718         * old_pthread_cond_wait.c: New file.
6719         * pthreadP.h: Add prototypes for the compatibility interfaces.
6720
6721         * pthread_cond_destroy.c: Don't include <errno.h>.
6722
6723 2003-01-01  Ulrich Drepper  <drepper@redhat.com>
6724
6725         * sysdeps/unix/sysv/linux/i386/i486/lowlevelrwlock.S: Avoid
6726         unnecessary zero offset when addressing MUTEX.
6727
6728 2002-12-31  Ulrich Drepper  <drepper@redhat.com>
6729
6730         * sysdeps/unix/sysv/linux/fork.h: Add libc_hidden_proto for
6731         __register_atfork.
6732         * sysdeps/unix/sysv/linux/register-atfork.c: Add libc_hidden_def
6733         for __register_atfork.
6734
6735 2002-12-31  Jakub Jelinek  <jakub@redhat.com>
6736
6737         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Use __ASSEMBLER__
6738         instead of ASSEMBLER test macro.
6739
6740         * sysdeps/unix/sysv/linux/allocrtsig.c (__libc_current_sigrtmin,
6741         __libc_current_sigrtmax): Add libc_hidden_def.
6742
6743         * sysdeps/pthread/list.h: Remove assert.h include.
6744
6745 2002-12-31  Ulrich Drepper  <drepper@redhat.com>
6746
6747         * sysdeps/pthread/pt-initfini.c (call_initialize_minimal): Use
6748         __pthread_initialize_minimal_internal not
6749         __pthread_initialize_minimal.
6750
6751 2002-12-30  Ulrich Drepper  <drepper@redhat.com>
6752
6753         * sysdeps/pthread/pt-initfini.c (call_initialize_minimal): Mark
6754         __pthread_initialize_minimal as hidden.
6755
6756         * init.c (__pthread_initialize_minimal_internal): Don't mark as
6757         constructor.
6758
6759 2002-12-31  Jakub Jelinek  <jakub@redhat.com>
6760
6761         * Makefile ($(inst_libdir)/libpthread.so): Depend on
6762         $(common-objpfx)format.lds, include that into the output script.
6763         Fix comment.
6764         (extra-B-pthread.so): Change linuxthreads/ into nptl/.
6765
6766 2002-12-28  Andreas Jaeger  <aj@suse.de>
6767
6768         * sysdeps/unix/sysv/linux/xstatconv.c (xstat_conv): Adjust for
6769         nsec resolution changes.
6770         (xstat64_conv): Likewise.
6771         (xstat32_conv): Likewise.
6772         * sysdeps/unix/sysv/linux/kernel_stat.h: Add nsec resolution for
6773         struct kernel_stat.
6774         * sysdeps/unix/sysv/linux/bits/stat.h: Add nsec resolution for
6775         structs stat and stat64.
6776         * time/time.h (__timespec_defined): Define for __USE_MISC.
6777         * io/sys/stat.h [__USE_MISC]: Define __need_timespec for struct stat.
6778
6779 2002-12-30  Jakub Jelinek  <jakub@redhat.com>
6780
6781         * forward.c (FORWARD2): Renamed from FORWARD3.  Remove unused export
6782         argument.
6783         (pthread_attr_init_2_0, pthread_attr_init_2_1): Use FORWARD macro.
6784         (pthread_exit): Use strong_alias to avoid warnings.
6785         * pthreadP.h (struct pthread_functions): Rename ptr_pthread_exit
6786         and ptr_pthread_attr_init_2_* to ptr___pthread_exit and
6787         ptr___pthread_attr_init_2_*.
6788         * init.c (pthread_functions): Adjust.
6789
6790 2002-12-29  Ulrich Drepper  <drepper@redhat.com>
6791
6792         * forward.c: Make all functions available by default again.  It
6793         caused too much trouble.
6794
6795         * pt-siglongjmp.c: Removed.
6796
6797 2002-12-28  Jakub Jelinek  <jakub@redhat.com>
6798
6799         * sysdeps/i386/tls.h: Include tcb-offsets.h in assembler.
6800         (SYSINFO_OFFSET, MULTIPLE_THREADS_OFFSET): Remove.
6801         * sysdeps/i386/Makefile: New file.
6802         * sysdeps/i386/tcb-offsets.sym: New file.
6803         * sysdeps/pthread/tcb-offsets.h: New file.
6804         * sysdeps/unix/sysv/linux/libc_pthread_init.c (__libc_pthread_init):
6805         Remove MULTIPLE_THREADS_OFFSET and SYSINFO_OFFSET checks.
6806
6807         * sysdeps/unix/sysv/linux/Versions [libc] (GLIBC_PRIVATE): Move
6808         __register_atfork...
6809         (GLIBC_2.3.2): ...here.
6810
6811 2002-12-28  Ulrich Drepper  <drepper@redhat.com>
6812
6813         * sysdeps/pthread/pthread.h: Mark pthread_attr_getstackaddr and
6814         pthread_attr_setstackaddr with __attribute_deprecated__.
6815
6816 2002-12-27  Jakub Jelinek  <jakub@redhat.com>
6817
6818         * pt-system.c (system): Remove cancellation handling.
6819         * tst-cancel-wrappers.sh: Allow pt-system.o* to not use the
6820         cancellation routines.
6821
6822 2002-12-28  Ulrich Drepper  <drepper@redhat.com>
6823
6824         * descr.h: Include <dl-sysdep.h>.
6825         (struct pthread): Move header.data.list to the back of the struct.
6826         * sysdeps/i386/tls.h (tcbhead_t): Move list to the back of the struct.
6827         (MULTIPLE_THREADS_OFFSET): Adjust offset.
6828         (SYSINFO_OFFSEET): Likewise.
6829
6830 2002-12-27  Jakub Jelinek  <jakub@redhat.com>
6831
6832         * sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h (USE_DL_SYSINFO):
6833         Define.
6834         (DL_SYSINFO_DEFAULT): Cast to uintptr_t to avoid warnings.
6835         * sysdeps/unix/sysv/linux/i386/dl-sysdep.h (NEED_DL_SYSINFO,
6836         DL_SYSINFO_DEFAULT, DL_SYSINFO_IMPLEMENTATION): Define.
6837         (USE_DL_SYSINFO): Undef.
6838
6839 2002-12-22  Jakub Jelinek  <jakub@redhat.com>
6840
6841         * Makefile (tests-reverse): Use $(objpfx)../libc.so instead of
6842         $(common-objpfx)libc.so.
6843         * tst-cancel4.c (tf_write, tf_writev): Increase buf sizes so that
6844         it is bigger than pipe buffer size even on arches with bigger
6845         page size.
6846         (tf_usleep): Cast usleep argument to useconds_t to avoid warnings.
6847
6848 2002-12-25  Ulrich Drepper  <drepper@redhat.com>
6849
6850         * sysdeps/unix/sysv/linux/i386/i486/lowlevelsem.S: Implement
6851         correct errno access for case that USE___THREAD is not defined.
6852
6853 2002-12-24  Ulrich Drepper  <drepper@redhat.com>
6854
6855         * sysdeps/unix/sysv/linux/i386/dl-sysdep.h: Add missing #endif.
6856         Patch by Marijn Ros <marijn@mad.scientist.com>.
6857
6858 2002-12-22  Roland McGrath  <roland@redhat.com>
6859
6860         * Makefile (omit-deps): Add $(unix-syscalls:%=ptw-%).
6861
6862 2002-12-20  Ulrich Drepper  <drepper@redhat.com>
6863
6864         * sysdeps/pthread/bits/stdio-lock.h (_IO_lock_inexpensive): Define.
6865
6866 2002-12-19  Ulrich Drepper  <drepper@redhat.com>
6867
6868         * sysdeps/unix/sysv/linux/i386/dl-sysdep.h: Don't define
6869         NEED_DL_SYSINFO since no processor < i686 had the sysenter opcode.
6870         * sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h: New file.
6871
6872         * sysdeps/unix/sysv/linux/i386/pthread_once.S: Use ENTER_KERNEL instead
6873         of int $0x80.
6874         * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: Likewise.
6875         * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevelmutex.S: Likewise.
6876         * sysdeps/unix/sysv/linux/i386/i486/lowlevelcond.S: Likewise.
6877         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: Likewise.
6878         * sysdeps/unix/sysv/linux/i386/i486/lowlevelmutex.S: Likewise.
6879         * sysdeps/unix/sysv/linux/i386/i486/lowlevelrwlock.S: Likewise.
6880         * sysdeps/unix/sysv/linux/i386/i486/lowlevelsem.S: Likewise.
6881         * sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S: Likewise.
6882
6883         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Add support for using
6884         sysenter.
6885         * sysdeps/unix/sysv/linux/i386/lowlevelsem.h: Likewise.
6886
6887         * sysdeps/i386/tls.h: Unconditionally include <dl-sysdep.h>.
6888
6889         * allocatestack.c (allocate_stack) [NEED_DL_SYSINFO]: Set sysinfo
6890         in new TCB.
6891         * sysdeps/unix/sysv/linux/i386/createthread.c (create_thread): Check
6892         that sysinfo is properly initialized.
6893         * sysdeps/unix/sysv/linux/i386/dl-sysdep.h: Define RTLD_PRIVATE_ERRNO
6894         to 1 only for ld.so.
6895
6896         * sysdeps/unix/sysv/linux/i386/dl-sysdep.h: Define
6897         RTLD_CORRECT_DYNAMIC_WEAK.
6898
6899 2002-12-19  Jakub Jelinek  <jakub@redhat.com>
6900
6901         * forward.c (pthread_attr_init_2_0, pthread_attr_init_2_1):
6902         Use return 0 as 6th argument to FORWARD4.
6903         * pthread_equal.c: Include pthreadP.h instead of pthread.h.
6904
6905 2002-12-18  Ulrich Drepper  <drepper@redhat.com>
6906
6907         * descr.h (struct pthread) [NEED_DL_SYSINFO]: Add sysinfo member.
6908         * sysdeps/i386/tls.h (tcbhead_t): Add sysinfo member.
6909         Define SYSINFO_OFFSEET if NEED_DL_SYSINFO is defined.
6910         (INIT_SYSINFO): New #define.
6911         (TLS_TP_INIT): Use INIT_SYSINFO.
6912         * sysdeps/unix/sysv/linux/libc_pthread_init.c (__libc_pthread_init):
6913         At test to make sure SYSINFO_OFFSET value is correct.
6914         * sysdeps/unix/sysv/linux/i386/dl-sysdep.h: New file.
6915
6916 2002-12-18  Jakub Jelinek  <jakub@redhat.com>
6917
6918         * sysdeps/pthread/flockfile.c (flockfile): Change into weak alias.
6919         * sysdeps/unix/sysv/linux/raise.c (gsignal): Add weak alias to raise.
6920         * Versions [libc: GLIBC_2.0]: Add pthread_attr_init.
6921         [libpthread: GLIBC_2.1]: Remove __pthread_rwlock_init,
6922         __pthread_rwlock_destroy, __pthread_rwlock_rdlock,
6923         __pthread_rwlock_wrlock, __pthread_rwlock_unlock,
6924         __pthread_rwlock_tryrdlock and __pthread_rwlock_trywrlock.
6925
6926 2002-12-18  Ulrich Drepper  <drepper@redhat.com>
6927
6928         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Use ENTER_KERNEL
6929         macro instead of using int $0x80 directly.
6930
6931         * sysdeps/pthread/bits/stdio-lock.h: New file.
6932         * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevelmutex.S: New file.
6933         * sysdeps/unix/sysv/linux/i386/i586/libc-lowlevelmutex.S: New file.
6934         * sysdeps/unix/sysv/linux/i386/i686/libc-lowlevelmutex.S: New file.
6935         * Makefile (routines): Add libc-lowlevelmutex.
6936
6937         * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: Remove
6938         __i686.get_pc_thunk.dx.
6939
6940 2002-12-17  Jakub Jelinek  <jakub@redhat.com>
6941
6942         * Makefile (libpthread-shared-only-routines): Add pt-allocrtsig.
6943         (tests): Depend on $(objpfx)tst-cancel-wrappers.out.
6944         ($(objpfx)tst-cancel-wrappers.out): New rule.
6945         * tst-cancel-wrappers.sh: New test.
6946         * tst-locale1.c: Include signal.h.
6947         (uselocale): Test static linking of __libc_current_sigrt*.
6948
6949 2002-12-17  Ulrich Drepper  <drepper@redhat.com>
6950
6951         * Makefile (tests): Add tst-cancel6.
6952         * tst-cancel6.c: New file
6953
6954 2002-12-17  Jakub Jelinek  <jakub@redhat.com>
6955
6956         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h (SINGLE_THREAD_P):
6957         Define meaningfully for assembler as well.
6958         * pthreadP.h (struct pthread_functions): Remove
6959         ptr_pthread_attr_init field.  Add ptr_pthread_attr_init_2_0
6960         and ptr_pthread_attr_init_2_1 fields.
6961         * init.c (pthread_functions): Initialize ptr_pthread_attr_init_2_0
6962         and ptr_pthread_attr_init_2_1 instead of ptr_pthread_attr_init.
6963         * forward.c (FORWARD4): Renamed from FORWARD3. Add export argument.
6964         (FORWARD3): Define using FORWARD4.
6965         (pthread_attr_init): Provide both @GLIBC_2.0 and @@GLIBC_2.1
6966         versions.
6967         * pt-system.c: Remove duplicate stdlib.h include.
6968
6969 2002-12-16  Ulrich Drepper  <drepper@redhat.com>
6970
6971         * sem_init.c: Define sem_init@GLIBC_2.0.
6972         * sem_destroy.c: Define sem_destroy@GLIBC_2.0.
6973         * sem_getvalue.c: Define sem_getvalue@GLIBC_2.0.
6974
6975         * flockfile.c: Moved to...
6976         * sysdeps/pthread/flockfile.c: ...here.  New file.
6977         * funlockfile.c: Moved to...
6978         * sysdeps/pthread/funlockfile.c: ...here.  New file.
6979         * ftrylockfile.c: Moved to...
6980         * sysdeps/pthread/ftrylockfile.c: ...here.  New file.
6981
6982 2002-12-16  Jakub Jelinek  <jakub@redhat.com>
6983
6984         * libc-cancellation.c: Guard both function with
6985         #if !defined NOT_IN_libc.
6986         * Makefile (libpthread-routines): Use ptw-, not pt- prefix for the
6987         automatically provided pthread wrappers.
6988         * pthreadP.h (LIBC_CANCEL_ASYNC, LIBC_CANCEL_RESET): Define to
6989         CANCEL_* if IS_IN_libpthread and to dummy versions if not in libc
6990         nor in libpthread.
6991         * pt-open.c: Removed.
6992         * pt-fcntl.c: Removed.
6993         * pt-fsync.c: Removed.
6994         * pt-lseek.c: Removed.
6995         * pt-msgrcv.c: Removed.
6996         * pt-msgsnd.c: Removed.
6997         * pt-msync.c: Removed.
6998         * pt-nanosleep.c: Removed.
6999         * pt-open64.c: Removed.
7000         * pt-pause.c: Removed.
7001         * pt-pread.c: Removed.
7002         * pt-pread64.c: Removed.
7003         * pt-pwrite.c: Removed.
7004         * pt-pwrite64.c: Removed.
7005         * pt-read.c: Removed.
7006         * pt-recv.c: Removed.
7007         * pt-recvfrom.c: Removed.
7008         * pt-recvmsg.c: Removed.
7009         * pt-send.c: Removed.
7010         * pt-sendto.c: Removed.
7011         * pt-sigtimedwait.c: Removed.
7012         * pt-sigwait.c: Removed.
7013         * pt-wait.c: Removed.
7014         * pt-waitpid.c: Removed.
7015         * pt-write.c: Removed.
7016         * pt-accept.c: Removed.
7017         * pt-close.c: Removed.
7018         * pt-connect.c: Removed.
7019         * pt-lseek64.c: Removed.
7020         * pt-sendmsg.c: Removed.
7021         * pt-tcdrain.c: Removed.
7022
7023 2002-12-15  Ulrich Drepper  <drepper@redhat.com>
7024
7025         * init.c (__pthread_initialize_minimal_internal): Renamed from
7026         __pthread_initialize_minimal.  Make old name an alias.  This
7027         converts a normal relocation into a relative relocation.
7028
7029         * pt-fcntl.c (__fcntl): Use fcntl64 syscall, not fcntl.
7030
7031         * Versions [libpthread: GLIBC_2.3.2]: Remove creat, poll, pselect,
7032         readv, select, sigpause, sigsuspend, sigwaitinfo, waitid, writev.
7033         * Makefile (libpthread-routines): Remove pt-creat, pt-poll,
7034         pt-pselect, pt-readv, pt-select, pt-sigpause, pt-sigsuspend,
7035         pt-sigwaitinfo, pt-waitid, and pt-writev.
7036         * pt-creat.c: Removed.
7037         * pt-poll.c: Removed.
7038         * pt-pselect.c: Removed.
7039         * pt-readv.c: Removed.
7040         * pt-select.c: Removed.
7041         * pt-sigpause.c: Removed.
7042         * pt-sigsuspend.c: Removed.
7043         * pt-sigwaitinfo.c: Removed.
7044         * pt-waitid.c: Removed.
7045         * pt-writev.c: Removed.
7046
7047         * init.c (pthread_functions): New variable.
7048         (__pthread_initialize_minimal): Pass pointer to pthread_functions
7049         (or NULL) to __libc_pthread_init.
7050         * forward.c: Rewrite to use __libc:pthread_functions array to get
7051         function addresses.
7052         * sysdeps/unix/sysv/linux/fork.h: Remove __libc_pthread_init
7053         prototype.
7054         * sysdeps/unix/sysv/linux/libc_pthread_init.c (__libc_pthread_init):
7055         Take new parameter.  Copy content of variable pointed to by it
7056         to __libc_pthread_init.
7057
7058         * pthreadP.h (struct pthread_functions): New type.
7059         (__libc_pthread_init): Declare.
7060
7061         * pthread_attr_destroy.c: Add namespace protected alias.
7062         * pthread_attr_getdetachstate.c: Likewise.
7063         * pthread_attr_getinheritsched.c: Likewise.
7064         * pthread_attr_getschedparam.c: Likewise.
7065         * pthread_attr_getschedpolicy.c: Likewise.
7066         * pthread_attr_getscope.c: Likewise.
7067         * pthread_attr_setdetachstate.c: Likewise.
7068         * pthread_attr_setinheritsched.c: Likewise.
7069         * pthread_attr_setschedparam.c: Likewise.
7070         * pthread_attr_setschedpolicy.c: Likewise.
7071         * pthread_attr_setscope.c: Likewise.
7072         * pthread_cond_broadcast.c: Likewise.
7073         * pthread_cond_destroy.c: Likewise.
7074         * pthread_cond_init.c: Likewise.
7075         * pthread_cond_signal.c: Likewise.
7076         * pthread_cond_wait.c: Likewise.
7077         * pthread_condattr_destroy.c: Likewise.
7078         * pthread_condattr_init.c: Likewise.
7079         * pthread_equal.c: Likewise.
7080         * pthread_exit.c: Likewise.
7081         * pthread_getschedparam.c: Likewise.
7082         * pthread_self.c: Likewise.
7083         * pthread_setcancelstate.c: Likewise.
7084         * pthread_setschedparam.c: Likewise.
7085         * pthread_mutex_destroy.c: Likewise.
7086         * pthread_mutex_init.c: Likewise.
7087         * pthreadP.h: Add prototypes for the aliases.
7088
7089         * sysdeps/unix/sysv/linux/i386/createthread.c (create_thread): Set
7090         multiple_threads member in correct TCB to 1.
7091
7092         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Define
7093         SINGLE_THREAD_P.  If in libc or libpthread examine multiple_thread
7094         member of thread decriptor, otherwise return unconditionally 1.
7095
7096 2002-12-14  Ulrich Drepper  <drepper@redhat.com>
7097
7098         * sysdeps/unix/sysv/linux/i386/pt-socket.S: Changes folded into the
7099         regular Linux version.  Remove file.
7100         * sysdeps/unix/sysv/linux/connect.S: Likewise.  Remove file.
7101         * sysdeps/unix/sysv/linux/llseek.c: Likewise.  Remove file.
7102         * sysdeps/unix/sysv/linux/msgrcv.c: Likewise.  Remove file.
7103         * sysdeps/unix/sysv/linux/msgsnd.c: Likewise.  Remove file.
7104         * sysdeps/unix/sysv/linux/open64.c: Likewise.  Remove file.
7105         * sysdeps/unix/sysv/linux/poll.c: Likewise.  Remove file.
7106         * sysdeps/unix/sysv/linux/pread.c: Likewise.  Remove file.
7107         * sysdeps/unix/sysv/linux/pread64.c: Likewise.  Remove file.
7108         * sysdeps/unix/sysv/linux/pselect.c: Likewise.  Remove file.
7109         * sysdeps/unix/sysv/linux/pwrite.c: Likewise.  Remove file.
7110         * sysdeps/unix/sysv/linux/pwrite64.c: Likewise.  Remove file.
7111         * sysdeps/unix/sysv/linux/readv.c: Likewise.  Remove file.
7112         * sysdeps/unix/sysv/linux/recv.S: Likewise.  Remove file.
7113         * sysdeps/unix/sysv/linux/recvfrom.S: Likewise.  Remove file.
7114         * sysdeps/unix/sysv/linux/recvmsg.S: Likewise.  Remove file.
7115         * sysdeps/unix/sysv/linux/send.S: Likewise.  Remove file.
7116         * sysdeps/unix/sysv/linux/sendmsg.S: Likewise.  Remove file.
7117         * sysdeps/unix/sysv/linux/sendto.S: Likewise.  Remove file.
7118         * sysdeps/unix/sysv/linux/sigpause.c: Likewise.  Remove file.
7119         * sysdeps/unix/sysv/linux/sigsuspend.c: Likewise.  Remove file.
7120         * sysdeps/unix/sysv/linux/sigtimedwait.c: Likewise.  Remove file.
7121         * sysdeps/unix/sysv/linux/sigwait.c: Likewise.  Remove file.
7122         * sysdeps/unix/sysv/linux/sigwaitinfo.c: Likewise.  Remove file.
7123         * sysdeps/unix/sysv/linux/system.c: Likewise.  Remove file.
7124         * sysdeps/unix/sysv/linux/tcdrain.c: Likewise.  Remove file.
7125         * sysdeps/unix/sysv/linux/wait.c: Likewise.  Remove file.
7126         * sysdeps/unix/sysv/linux/waitid.c: Likewise.  Remove file.
7127         * sysdeps/unix/sysv/linux/waitpid.c: Likewise.  Remove file.
7128         * sysdeps/unix/sysv/linux/writev.c: Likewise.  Remove file.
7129         * sysdeps/unix/sysv/linux/i386/fcntl.c: Likewise.  Remove file.
7130
7131 2002-12-14  Jakub Jelinek  <jakub@redhat.com>
7132
7133         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: New file.
7134         * sysdeps/unix/sysv/linux/open.c: Removed.
7135         * sysdeps/unix/sysv/linux/fsync.c: Removed.
7136         * sysdeps/unix/sysv/linux/lseek.c: Removed.
7137         * sysdeps/unix/sysv/linux/msync.c: Removed.
7138         * sysdeps/unix/sysv/linux/read.c: Removed.
7139         * sysdeps/unix/sysv/linux/close.c: Removed.
7140         * sysdeps/unix/sysv/linux/creat.c: Removed.
7141         * sysdeps/unix/sysv/linux/nanosleep.c: Removed.
7142         * sysdeps/unix/sysv/linux/pause.c: Removed.
7143         * sysdeps/unix/sysv/linux/select.c: Removed.
7144         * sysdeps/unix/sysv/linux/write.c: Removed.
7145
7146 2002-12-14  Ulrich Drepper  <drepper@redhat.com>
7147
7148         * sysdeps/unix/sysv/linux/i386/pt-socket.S: Check multiple_threads
7149         element in TCB to see whether locking is needed.
7150
7151         * sysdeps/unix/sysv/linux/libc_pthread_init.c: Check that
7152         MULTIPLE_THREADS_OFFSET value is correct.
7153
7154         * sysdeps/unix/sysv/linux/close.c: New file.
7155         * sysdeps/unix/sysv/linux/connect.S: New file.
7156         * sysdeps/unix/sysv/linux/creat.c: New file.
7157         * sysdeps/unix/sysv/linux/fsync.c: New file.
7158         * sysdeps/unix/sysv/linux/llseek.c: New file.
7159         * sysdeps/unix/sysv/linux/lseek.c: New file.
7160         * sysdeps/unix/sysv/linux/msgrcv.c: New file.
7161         * sysdeps/unix/sysv/linux/msgsnd.c: New file.
7162         * sysdeps/unix/sysv/linux/msync.c: New file.
7163         * sysdeps/unix/sysv/linux/nanosleep.c: New file.
7164         * sysdeps/unix/sysv/linux/open.c: New file.
7165         * sysdeps/unix/sysv/linux/open64.c: New file.
7166         * sysdeps/unix/sysv/linux/pause.c: New file.
7167         * sysdeps/unix/sysv/linux/poll.c: New file.
7168         * sysdeps/unix/sysv/linux/pread.c: New file.
7169         * sysdeps/unix/sysv/linux/pread64.c: New file.
7170         * sysdeps/unix/sysv/linux/pselect.c: New file.
7171         * sysdeps/unix/sysv/linux/pwrite.c: New file.
7172         * sysdeps/unix/sysv/linux/pwrite64.c: New file.
7173         * sysdeps/unix/sysv/linux/readv.c: New file.
7174         * sysdeps/unix/sysv/linux/recv.S: New file.
7175         * sysdeps/unix/sysv/linux/recvfrom.S: New file.
7176         * sysdeps/unix/sysv/linux/recvmsg.S: New file.
7177         * sysdeps/unix/sysv/linux/select.c: New file.
7178         * sysdeps/unix/sysv/linux/send.S: New file.
7179         * sysdeps/unix/sysv/linux/sendmsg.S: New file.
7180         * sysdeps/unix/sysv/linux/sendto.S: New file.
7181         * sysdeps/unix/sysv/linux/sigpause.c: New file.
7182         * sysdeps/unix/sysv/linux/sigsuspend.c: New file.
7183         * sysdeps/unix/sysv/linux/sigtimedwait.c: New file.
7184         * sysdeps/unix/sysv/linux/sigwait.c: New file.
7185         * sysdeps/unix/sysv/linux/sigwaitinfo.c: New file.
7186         * sysdeps/unix/sysv/linux/system.c: New file.
7187         * sysdeps/unix/sysv/linux/tcdrain.c: New file.
7188         * sysdeps/unix/sysv/linux/wait.c: New file.
7189         * sysdeps/unix/sysv/linux/waitid.c: New file.
7190         * sysdeps/unix/sysv/linux/waitpid.c: New file.
7191         * sysdeps/unix/sysv/linux/writev.c: New file.
7192         * sysdeps/unix/sysv/linux/i386/fcntl.c: New file.
7193
7194         * pt-readv.c: Fix comment.
7195
7196 2002-12-14  Jakub Jelinek  <jakub@redhat.com>
7197
7198         * tst-cleanup1.c: Include stdlib.h.
7199
7200         * tst-cancel5.c: New test.
7201         * Makefile (tests): Add tst-cancel5.
7202         (tst-cancel5): Link against libc.so libpthread.so in that order.
7203
7204 2002-12-13  Ulrich Drepper  <drepper@redhat.com>
7205
7206         * forward.c (test_loaded): Prevent recursive calls.
7207
7208         * Makefile (routines): Add libc-cancellation.
7209         * libc-cancellation.c: New file.
7210         * descr.h (struct pthread): Add multiple_threads field.
7211         * allocatestack.c (allocate_stack): Initialize multiple_header field of
7212         new thread descriptor to 1.
7213         * sysdeps/unix/sysv/linux/i386/createthread.c (create_thread):
7214         Initialize multiple_thread field after successful thread creation.
7215         * cancellation.c (__do_cancel): Move to pthreadP.h.
7216         (__pthread_enable_asynccancel): Remove parameter from __do_cancel call.
7217         (__pthread_disable_asynccancel): Add internal_function attribute.
7218         * init.c (sigcancel_handler): Remove parameter from __do_cancel call.
7219         * pthread_setcancelstate.c: Likewise.
7220         * pthread_setcanceltype.c: Likewise.
7221         * pthread_exit.c: Likewise.
7222         * pthreadP.h (CANCELLATION_P): Likewise.
7223         (__do_cancel): Define as static inline.
7224         (LIBC_CANCEL_ASYNC, LIBC_CANCEL_RESET): New #defines.
7225         (__libc_enable_asynccancel, __libc_disable_asynccancel): New
7226         declarations.
7227         * sysdeps/i386/tls.h (tcbhead_t): Add list and multiple_threads
7228         fields.  Define MULTIPLE_THREADS_OFFSET.
7229         * sysdeps/pthread/bits/libc-lock.h: Remove __libc_locking_needed
7230         declaration.
7231         * sysdeps/unix/sysv/linux/accept.S: New file.
7232         * sysdeps/unix/sysv/linux/read.c: New file.
7233         * sysdeps/unix/sysv/linux/write.c: New file.
7234         * sysdeps/unix/sysv/linux/i386/pt-socket.S: New file.
7235         * sysdeps/unix/sysv/linux/libc_pthread_init.c: Remove definition and
7236         initialization of __libc_locking_needed.
7237         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Don't use
7238         __libc_locking_needed, use multiple_threads field in TCB.
7239         * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: Likewise.
7240
7241 2002-12-12  Ulrich Drepper  <drepper@redhat.com>
7242
7243         * sysdeps/unix/sysv/linux/i386/i686/libc-lowlevellock.S: Use i486
7244         version.
7245         * sysdeps/unix/sysv/linux/i386/i586/libc-lowlevellock.S: Likewise.
7246
7247         * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: Correct
7248         access to __libc_locking_needed for PIC.
7249
7250 2002-12-12  Jakub Jelinek  <jakub@redhat.com>
7251
7252         * sysdeps/pthread/bits/libc-lock.h (__libc_locking_needed): Only
7253         declare for libc.so.
7254         (__libc_lock_init, __libc_lock_init_recursive): Change into comma
7255         expression.
7256         (__libc_lock_lock): Put into statement expression.
7257         (__libc_lock_unlock): Remove trailing semicolon.
7258         * sysdeps/unix/sysv/linux/fork.h (__libc_pthread_init): Fix typo.
7259
7260 2002-12-12  Roland McGrath  <roland@redhat.com>
7261
7262         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Use asm operand with
7263         "m" constraint to refer to __libc_locking_needed.  Declare it here.
7264
7265 2002-12-12  Ulrich Drepper  <drepper@redhat.com>
7266
7267         * sysdeps/unix/sysv/linux/fork-gen.c: Renamed to...
7268         * sysdeps/unix/sysv/linux/libc_pthread_init.c: ...this.
7269         Initialize __libc_locking_needed.
7270         * init.c (__pthread_initialize_minimal): Call __libc_pthread_init
7271         instead of __register_pthread_fork_handler.
7272         * sysdeps/pthread/bits/libc-lock.h: Declare __libc_locking_needed.
7273         * sysdeps/unix/sysv/linux/Makefile (sysdep_routimes): Replace
7274         fork-gen with libc_pthread_init.
7275         * sysdeps/unix/sysv/linux/Versions: Use __libc_pthread_init instead
7276         of __register_pthread_fork_handler.
7277         * sysdeps/unix/sysv/linux/fork.h: Declare __libc_pthread_init instead
7278         of __register_pthread_fork_handler.
7279         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Use
7280         __libc_locking_needed to determine whether lock prefix can be avoided.
7281         * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: Likewise.
7282
7283 2002-12-11  Ulrich Drepper  <drepper@redhat.com>
7284
7285         * Makefile (tests): Add tst-cleanup1.
7286         * tst-cleanup1.c: New file.
7287         * cancellation.c (__cleanup_thread): Removed.
7288         (__do_cancel): Remove call to __cleanup_thread.
7289         * pthreadP.h: Remove __cleanup_thread prorotype.
7290
7291         * sysdeps/pthread/bits/libc-lock.h (__libc_cleanup_region_start):
7292         Remember function and argument even if cancellation handler
7293         function is not available.
7294         (__libc_cleanup_region_end): Execute registered function directly if
7295         pthread functions are not available.
7296         (__libc_cleanup_end): Likewise.
7297
7298         * init.c (__pthread_initialize_minimal): Fix initialization in
7299         static lib by preventing gcc from being too clever.
7300
7301 2002-12-10  Ulrich Drepper  <drepper@redhat.com>
7302
7303         * init.c (__pthread_initialize_minimal): Remove unneccesary
7304         sigaddset call.
7305
7306         * Makefile (tests): We can run tst-locale2 now.
7307
7308 2002-12-09  Ulrich Drepper  <drepper@redhat.com>
7309
7310         * Versions: Remove duplicated sigwait entry.
7311
7312 2002-12-08  Ulrich Drepper  <drepper@redhat.com>
7313
7314         * pthreadP.h: Enable pthread_cleanup_{push,pop} optimizations only
7315         inside libpthread.
7316
7317         * pt-fcntl.c (__fcntl): Initialize oldtype to avoid warning.
7318
7319         * pthreadP.h: Declare __pthread_enable_asynccancel and
7320         __pthread_disable_asynccancel.
7321         (CANCEL_ASYNC): Use __pthread_enable_asynccancel.
7322         (CANCEL_RESET): Use __pthread_disable_asynccancel.
7323         * cancellation.c (__pthread_enable_asynccancel): New function.
7324         (__pthread_disable_asynccancel): New function.
7325         * pt-accept.c: Adjust for CANCEL_ASYNC and CANCEL_RESET change.
7326         * pt-close.c: Likewise.
7327         * pt-connect.c: Likewise.
7328         * pt-creat.c: Likewise.
7329         * pt-fcntl.c: Likewise.
7330         * pt-fsync.c: Likewise.
7331         * pt-lseek.c: Likewise.
7332         * pt-lseek64.c: Likewise.
7333         * pt-msgrcv.c: Likewise.
7334         * pt-msgsnd.c: Likewise.
7335         * pt-msync.c: Likewise.
7336         * pt-nanosleep.c: Likewise.
7337         * pt-open.c: Likewise.
7338         * pt-open64.c: Likewise.
7339         * pt-pause.c: Likewise.
7340         * pt-poll.c: Likewise.
7341         * pt-pread.c: Likewise.
7342         * pt-pread64.c: Likewise.
7343         * pt-pselect.c: Likewise.
7344         * pt-pwrite.c: Likewise.
7345         * pt-pwrite64.c: Likewise.
7346         * pt-read.c: Likewise.
7347         * pt-readv.c: Likewise.
7348         * pt-recv.c: Likewise.
7349         * pt-recvfrom.c: Likewise.
7350         * pt-recvmsg.c: Likewise.
7351         * pt-select.c: Likewise.
7352         * pt-send.c: Likewise.
7353         * pt-sendmsg.c: Likewise.
7354         * pt-sendto.c: Likewise.
7355         * pt-sigpause.c: Likewise.
7356         * pt-sigsuspend.c: Likewise.
7357         * pt-sigtimedwait.c: Likewise.
7358         * pt-sigwait.c: Likewise.
7359         * pt-sigwaitinfo.c: Likewise.
7360         * pt-system.c: Likewise.
7361         * pt-tcdrain.c: Likewise.
7362         * pt-wait.c: Likewise.
7363         * pt-waitid.c: Likewise.
7364         * pt-waitpid.c: Likewise.
7365         * pt-write.c: Likewise.
7366         * pt-writev.c: Likewise.
7367         * pthread_join.c: Likewise.
7368         * pthread_timedjoin.c: Likewise.
7369
7370         * pt-sigpause.c (sigsuspend): Call __sigsuspend.
7371         (__xpg_sigpause): New function.
7372         * Versions (libpthread:GLIBC_2.3.2): Add __xpg_sigpause.
7373
7374 2002-12-07  Ulrich Drepper  <drepper@redhat.com>
7375
7376         * Makefile (CFLAGS-ftrylockfile.c): Add -D_IO_MTSAFE_IO.
7377
7378         * cleanup.c: Move declarations of _GI_pthread_cleanup_push and
7379         _GI_pthread_cleanup_pop to pthreadP.h.
7380
7381         * ftrylockfile.c: Use _IO_lock_trylock instead of
7382         pthread_mutex_trylock.
7383
7384         * pthreadP.h (CANCEL_ASYNC): Use __pthread_setcanceltype.
7385         (CANCEL_RESET): Likewise.
7386         (__pthread_setcanceltype_): Declare.
7387         (__pthread_mutex_lock_internal): Declare.
7388         (__pthread_mutex_unlock_internal): Declare.
7389         (__pthread_once_internal): Declare.
7390         (pthread_cleanup_push): Redefine using _GI_pthread_cleanup_push.
7391         (pthread_cleanup_pop): Redefine using _GI_pthread_cleanup_pop.
7392
7393         * pthread_cond_timedwait.c: Use INTUSE is calls to pthread_mutex_lock
7394         and pthread_mutex_unlock.
7395         * pthread_cond_wait.c: Likewise.
7396         * pthread_mutex_lock.c: Use INTDEF to define alias if needed.
7397         * pthread_mutex_unlock.c: Likewise.
7398
7399         * pthread_setcanceltype.c: Add additional alias
7400         __pthread_setcanceltype.
7401
7402         * sem_unlink.c (sem_unlink): Use __pthread_once with INTDEF.
7403         * sem_open.c (sem_open): Likewise.
7404         Use __libc_open, __libc_write, and __libc_close instead of
7405         open, write, and close respectively.
7406
7407         * sysdeps/pthread/bits/libc-lock.h (__libc_lock_trylock_internal):
7408         Rewrite as statement expression since it must return a value.
7409
7410         * pthread_cancel.c: Use __pthread_kill instead of pthread_kill.
7411         * sysdeps/unix/sysv/linux/pthread_kill.c: Define additional alias
7412         __pthread_kill.
7413
7414         * sysdeps/unix/sysv/linux/i386/pthread_once.S: Define additional
7415         alias __pthread_once_internal.
7416
7417         * sysdeps/unix/sysv/linux/raise.c: Use libc_hidden_def for raise.
7418
7419 2002-12-06  Ulrich Drepper  <drepper@redhat.com>
7420
7421         * Makefile (tests): Add tst-stdio1 and tst-stdio2.
7422         * tst-stdio1.c: New file.
7423         * tst-stdio2.c: New file.
7424
7425         * init.c (__pthread_initialize_minimal): Correct INIT_LIST_HEAD use.
7426
7427         * Makefile (tests): Comment out tst-locale2 for now.
7428         (CFLAGS-flockfile.c, CFLAGS-funlockfile.c): Define to -D_IO_MTSAFE_IO.
7429
7430         * sysdeps/unix/sysv/linux/Makefile: Define CFLAGS-fork.c to
7431         -D_IO_MTSAFE_IO.
7432         * sysdeps/unix/sysv/linux/fork.c: Include <bits/stdio-lock.h>.
7433         Use _IO_lock_init instead of explicit assignment.
7434
7435         * sysdeps/pthread/bits/libc-lock.h: Define __rtld_lock_* macros.
7436         Define __libc_lock_* and __libc_lock_recursive macros with
7437         lowlevellock macros, not pthread mutexes.
7438
7439         * flockfile.c: Include <bits/stdio-lock.h>.  Use _IO_lock_lock instead
7440         of pthread_mutex_lock.
7441         * funlockfile.c: Include <bits/stdio-lock.h>.  Use _IO_lock_unlock
7442         instead of pthread_mutex_unlock.
7443
7444 2002-12-06  Roland McGrath  <roland@redhat.com>
7445
7446         * allocatestack.c (__stack_user): Use uninitialized defn.
7447         * init.c (__pthread_initialize_minimal): Initialize it here.
7448
7449 2002-12-05  Roland McGrath  <roland@redhat.com>
7450
7451         * sysdeps/i386/tls.h (TLS_INIT_TP): Make it return zero or an error
7452         string.
7453         * sysdeps/x86_64/tls.h (TLS_INIT_TP): Likewise.
7454
7455         * sysdeps/unix/sysv/linux/i386/createthread.c (create_thread): Add
7456         missing & here too.
7457
7458 2002-12-05  Ulrich Drepper  <drepper@redhat.com>
7459
7460         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Remove
7461         lowlevellock.
7462         * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: New file.
7463         * sysdeps/unix/sysv/linux/i386/i586/libc-lowlevellock.S: New file.
7464         * sysdeps/unix/sysv/linux/i386/i686/libc-lowlevellock.S: New file.
7465         * sysdeps/pthread/bits/libc-lock.h: Use lowlevellock implementation
7466         for __libc_lock_* macros.
7467         * Makefile (routines): Add libc-lowlevellock.
7468
7469 2002-10-09  Roland McGrath  <roland@redhat.com>
7470
7471         * sysdeps/pthread/bits/libc-lock.h (__libc_maybe_call): New macro.
7472         Under [__PIC__], call the function via the pointer fetched for
7473         comparison rather than a call by name that uses the PLT.
7474         (__libc_lock_init, __libc_rwlock_init, __libc_lock_fini)
7475         (__libc_rwlock_fini, __libc_lock_lock, __libc_rwlock_rdlock)
7476         (__libc_rwlock_wrlock, __libc_lock_trylock, __libc_rwlock_tryrdlock)
7477         (__libc_rwlock_trywrlock, __libc_lock_unlock, __libc_rwlock_unlock)
7478         (__libc_key_create, __libc_getspecific, __libc_setspecific): Use it.
7479
7480 2002-12-04  Roland McGrath  <roland@redhat.com>
7481
7482         * forward.c (pthread_self): Use FORWARD3 macro to correct return type.
7483
7484         * sysdeps/i386/td_ta_map_lwp2thr.c: Moved from ../nptl_db.
7485         * sysdeps/generic/td_ta_map_lwp2thr.c: New file.
7486
7487         * pthread_create.c (start_thread): Add missing & on __nptl_last_event.
7488
7489 2002-12-04  Ulrich Drepper  <drepper@redhat.com>
7490
7491         * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h: Make pthread_t
7492         a completely opaque, non-integer type.
7493         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: Likewise.
7494
7495 2002-12-05  Jakub Jelinek  <jakub@redhat.com>
7496
7497         * sysdeps/i386/tls.h: Include stdlib.h.
7498         * sysdeps/x86_64/tls.h: Likewise.
7499
7500 2002-12-04  Ulrich Drepper  <drepper@redhat.com>
7501
7502         * Makefile (tests): Add tst-locale2.
7503         (tests-static): Likewise.
7504         * tst-locale2.c: New file.
7505
7506         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Mark asms as
7507         volatile and add memory clobbers to lock operations.
7508
7509 2002-12-03  Ulrich Drepper  <drepper@redhat.com>
7510
7511         * sysdeps/i386/i686/bits/atomic.h: Use i486 version.
7512         * sysdeps/i386/i486/bits/atomic.h: New file.
7513         * sysdeps/i386/i586/bits/atomic.h: New file.
7514         * sysdeps/i386/i686/pthread_spin_trylock.S: Define HAVE_CMOV and
7515         include i486 version.
7516         * sysdeps/i386/i486/pthread_spin_trylock.S: New file.
7517         * sysdeps/i386/i586/pthread_spin_trylock.S: New file.
7518         Patch by Marijn Ros <marijn@mad.scientist.com>.
7519
7520         * allocatestack.c (get_cached_stack): Don't crash if we first
7521         found a stack with a larger size then needed.
7522         Reported by Hui Huang <hui.huang@sun.com>.
7523
7524         * Makefile (tests): Add tst-sysconf.
7525         * tst-sysconf.c: New file.
7526
7527         * sysdeps/unix/sysv/linux/bits/local_lim.h: Undefine
7528         PTHREAD_THREADS_MAX.
7529
7530 2002-12-02  Roland McGrath  <roland@redhat.com>
7531
7532         * pthreadP.h (__stack_user, __nptl_create_event, __nptl_death_event):
7533         Declare using hidden_proto instead of attribute_hidden, so there are
7534         non-.hidden static symbols for gdb to find.
7535         (__pthread_keys): Likewise.
7536         * events.c (__nptl_create_event, __nptl_death_event): Add hidden_def.
7537         * allocatestack.c (__stack_user): Likewise.
7538         * pthread_create.c (__pthread_keys): Likewise.
7539         (__nptl_threads_events, __nptl_last_event): Make these static instead
7540         of hidden.
7541         * pthread_key_create.c (__pthread_pthread_keys_max,
7542         __pthread_pthread_key_2ndlevel_size): Renamed from __linuxthreads_*.
7543
7544 2002-12-02  Ulrich Drepper  <drepper@redhat.com>
7545
7546         * Makefile (tests): Add tst-locale1.  If buid-static is yes link
7547         statically.
7548         * tst-locale1.c: New file.
7549
7550         * pthread_cond_timedwait.c: Include <stdlib.h>.
7551
7552         * Makefile (tests): Add tst-fork2 and tst-fork3.
7553         * tst-fork2.c: New file.
7554         * tst-fork3.c: New file.
7555
7556 2002-11-28  Ulrich Drepper  <drepper@redhat.com>
7557
7558         * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: New file.
7559
7560         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Define macros which
7561         require it to 200112L.
7562
7563         * sysdeps/unix/sysv/linux/i386/i486/lowlevelrwlock.S: Use cmov
7564         instruction only if HAVE_CMOV is defined.
7565         * sysdeps/unix/sysv/linux/i386/i686/lowlevelrwlock.S: Define HAVE_CMOV.
7566
7567         * sysdeps/unix/sysv/linux/x86_64/bits/semaphore.h: New file.
7568
7569         * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: New file.
7570
7571         * sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h: New file.
7572
7573         * sysdeps/unix/sysv/linux/x86_64/pt-vfork.S: New file.
7574
7575 2002-11-27  Ulrich Drepper  <drepper@redhat.com>
7576
7577         * sysdeps/x86_64/bits/atomic.h: New file.
7578
7579         * sysdeps/i386/i686/bits/atomic.h: Fix asm syntax for 8- and
7580         16-bit operations.
7581
7582         * sysdeps/unix/sysv/linux/raise.c (raise): Use INTERNAL_SYSCALL if
7583         possible since gettid cannot fail.
7584
7585         * sysdeps/x86_64/pthreaddef.h: New file.
7586
7587         * sysdeps/i386/pthreaddef.h (gettid): Removed.
7588
7589         * sysdeps/x86_64/pthread_spin_init.c: New file.
7590         * sysdeps/x86_64/pthread_spin_lock.c: New file.
7591         * sysdeps/x86_64/pthread_spin_trylock.c: New file.
7592         * sysdeps/x86_64/pthread_spin_unlock.c: New file.
7593
7594         * sysdeps/i386/i686/pthread_spin_trylock.S (pthread_spin_trylock):
7595         Add missing lock prefix.  Minute optimization.
7596
7597         * tst-spin2.c (main): Also check successful trylock call.
7598
7599         * sysdeps/pthread/pthread_sigmask.c (pthread_sigmask): Use correct
7600         syscall.  Fix typo in case INTERNAL_SYSCALL is not used.
7601
7602         * sysdeps/i386/pthread_spin_destroy.c: Moved to...
7603         * sysdeps/pthread/pthread_spin_destroy.c: ...here.  New file.
7604
7605         * sysdeps/i386/pthread_sigmask.c: Removed.  Use the generic code.
7606         * sysdeps/pthread/pthread_sigmask.c (pthread_sigmask): Return correct
7607         value in case of an error.  Add support for INTERNAL_SYSCALL.
7608
7609         * sysdeps/i386/pthread_sigmask.c (pthread_sigmask): Return correct
7610         value in case of an error.
7611
7612         * sysdeps/x86_64/tls.h: New file.
7613
7614 2002-11-26  Ulrich Drepper  <drepper@redhat.com>
7615
7616         * sysdeps/i386/tls.h (THREAD_GETMEM_NC): Change interface.  It now
7617         takes the array member name and the index as parameters.
7618         (THREAD_SETMEM_NC): Likewise.
7619         * pthread_getspecific.c: Use new THREAD_GETMEM_NC interface.
7620         * pthread_setspecific.c: Use new THREAD_GETMEM_NC and THREAD_SETMEM_NC
7621         interfaces.
7622
7623         * sysdeps/i386/tls.h (THREAD_SETMEM): Use size of member element
7624         to decide which code to use.
7625         (THREAD_SETMEM_NC): Likewise.
7626
7627         * allocatestack.c (queue_stack): Don't remove stack from list here.
7628         Do it in the caller.  Correct condition to prematurely terminate
7629         loop to free stacks.
7630         (__deallocate_stack): Remove stack from list here.
7631
7632 2002-11-26  Ulrich Drepper  <drepper@redhat.com>
7633
7634         * Makefile (tests): Add tst-stack1.
7635         * tst-stack1.c: New file.
7636
7637         * allocatestack.c (allocate_stack): Initialize the TCB on a user
7638         provided stack.
7639
7640         * pthread_attr_getstack.c: Return bottom of the thread area.
7641
7642 2002-11-25  Ulrich Drepper  <drepper@redhat.com>
7643
7644         * Makefile (libpthread-routines): Add pt-allocrtsig and
7645         pthread_kill_other_threads.
7646         * pt-allocrtsig.c: New file.
7647         * pthread_kill_other_threads.c: New file.
7648         * sysdeps/unix/sysv/linux/allocrtsig.c: Add additional aliases for
7649         all three functions.
7650         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Remove
7651         allocrtsig.
7652         * sysdeps/unix/sysv/linux/Versions (libc:GLIBC_PRIVATE): Export
7653         __libc_current_sigrtmin_private, __libc_current_sigrtmax_private,
7654         and __libc_allocate_rtsig_private.
7655         * Versions (libpthread): Export pthread_kill_other_threads_np,
7656         __libc_current_sigrtmin, and __libc_current_sigrtmax.
7657
7658 2002-11-24  Ulrich Drepper  <drepper@redhat.com>
7659
7660         * allocatestack.c (allocate_stack): stackaddr in attribute points to
7661         the end of the stack.  Adjust computations.
7662         When mprotect call fails dequeue stack and free it.
7663         * pthread_attr_setstack.c: Store top of the stack in stackaddr
7664         attribute.
7665         * pthread_getattr_np.c: Likewise.
7666
7667         * descr.h (IS_DETACHED): Add some more parenthesis to prevent
7668         surprises.
7669
7670 2002-11-23  Ulrich Drepper  <drepper@redhat.com>
7671
7672         * sysdeps/pthread/pthread.h (pthread_self): __THROW must come before
7673         attribute definitions.  Patch by Luca Barbieri <ldb@ldb.ods.org>.
7674
7675 2002-11-22  Ulrich Drepper  <drepper@redhat.com>
7676
7677         * pthread_getspecific.c: Optimize access to first 2nd-level array.
7678         * pthread_setspecific.c: Likewise.
7679
7680 2002-11-21  Ulrich Drepper  <drepper@redhat.com>
7681
7682         * sysdeps/unix/sysv/linux/i386/createthread.c: Remove CLONE_ flags
7683         definitions.  Get them from the official place.
7684         * sysdeps/unix/sysv/linux/i386/fork.c: Likewise.
7685
7686         * sysdeps/unix/sysv/linux/i386/createthread.c: Update CLONE_* flags.
7687         Use new CLONE_ flags in clone() calls.
7688
7689         * sysdeps/unix/sysv/linux/fork.c: Use ARCH_FORK to actually fork.
7690         * sysdeps/unix/sysv/linux/i386/fork.c: New file.
7691
7692         * Versions: Add pthread_* functions for libc.
7693         * forward.c: New file.
7694
7695         * sysdeps/pthread/Makefile (libpthread-sysdeps_routines): Add
7696         errno-loc.
7697         * herrno.c: New file.
7698         * res.c: New file.
7699
7700         * Makefile (libpthread-routines): Remove sem_post, sem_wait,
7701         sem_trywait, and sem_timedwait.  Add herrno and res.
7702         * sem_init.c: Don't initialize lock and waiters members.
7703         * sem_open.c: Likewise.
7704         * sem_post.c: Removed.
7705         * sem_wait.c: Removed.
7706         * sem_trywait.c: Removed.
7707         * sem_timedwait.c: Removed.
7708         * sysdeps/unix/sysv/linux/i386/i486/lowlevelsem.S: Complete rewrite.
7709         Includes full implementations of sem_post, sem_wait, sem_trywait,
7710         and sem_timedwait.
7711         * sysdeps/unix/sysv/linux/i386/lowlevelsem.h (lll_sem_post): Adjust
7712         for new implementation.
7713         * sysdeps/unix/sysv/linux/internaltypes.h (struct sem): Remove lock
7714         and waiters fields.
7715
7716         * tst-sem3.c: Improve error message.
7717         * tst-signal3.c: Likewise.
7718
7719         * init.c (__pthread_initialize_minimal): Use set_tid_address syscall
7720         to tell the kernel about the termination futex and to initialize tid
7721         member.  Don't initialize main_thread.
7722         * descr.h (struct pthread): Remove main_thread member.
7723         * cancelllation.c (__do_cancel): Remove code handling main thread.
7724         The main thread is not special anymore.
7725
7726         * allocatestack.c (__reclaim_stacks): Mark stacks as unused.  Add
7727         size of the stacks to stack_cache_actsize.
7728
7729         * pt-readv.c: Add missing "defined".
7730         * pt-sigwait.c: Likewise.
7731         * pt-writev.c: Likewise.
7732
7733 2002-11-09  Ulrich Drepper  <drepper@redhat.com>
7734
7735         * Versions: Export __connect from libpthread.
7736         Patch by Luca Barbieri <ldb@ldb.ods.org>.
7737
7738         * Makefile (libpthread-routines): Add pt-raise.
7739         * sysdeps/unix/sysv/linux/raise.c: New file.
7740         * sysdeps/unix/sysv/linux/pt-raise.c: New file.
7741         * sysdeps/generic/pt-raise.c: New file.
7742
7743         * pthread_cond_init.c: Initialize all data elements of the condvar
7744         structure.  Patch by Luca Barbieri <ldb@ldb.ods.org>.
7745
7746         * pthread_attr_init.c: Actually implement 2.0 compatibility version.
7747         * pthread_create.c: Likewise.
7748
7749         * Makefile (tests): Add tst-key1, tst-key2, tst-key3.
7750         * tst-key1.c: New file.
7751         * tst-key2.c: New file.
7752         * tst-key3.c: New file.
7753
7754         * Versions: Export pthread_detach for version GLIBC_2.0.
7755         Reported by Saurabh Desai <sdesai@austin.ibm.com>.
7756
7757 2002-11-08  Ulrich Drepper  <drepper@redhat.com>
7758
7759         * pthread_key_create.c: Terminate search after an unused key was found.
7760         Patch by Luca Barbieri <ldb@ldb.ods.org>.
7761
7762         * sysdeps/unix/sysv/linux/i386/pthread_once.S: Return zero.
7763         Patch by Luca Barbieri <ldb@ldb.ods.org>.
7764
7765 2002-10-10  Ulrich Drepper  <drepper@redhat.com>
7766
7767         * sysdeps/unix/sysv/linux/i386/i486/lowlevelsem.S: Use slow generic
7768         dynamic lookup for errno in PIC.
7769
7770         * allocatestack.c (get_cached_stack): Rearrange code slightly to
7771         release the stack lock as soon as possible.
7772         Call _dl_allocate_tls_init for TCB from the cache to re-initialize
7773         the static TLS block.
7774         (allocate_stack): Call _dl_allocate_tls_init for user-provided stack.
7775
7776         * cancellation.c: Renamed from cancelation.c.
7777         * Makefile: Adjust accordingly.
7778         * pthreadP.h (CANCELLATION_P): Renamed from CANCELATION_P.
7779         * cleanup_defer.c: Use CANCELLATION_P.
7780         * pthread_testcancel.c: Likewise.
7781         * descr.h: Fix spelling in comments.
7782         * init.c: Likewise.
7783         * pthread_getattr_np.c: Likewise.
7784         * pthread_getschedparam.c: Likewise.
7785         * pthread_setschedparam.c: Likewise.
7786         * Versions: Likewise.
7787
7788         * pt-pselect.c: New file.
7789         * Makefile (libpthread-routines): Add pt-pselect.
7790         * Versions: Add pselect.
7791
7792         * tst-cancel4.c: New file.
7793         * Makefile (tests): Add tst-cancel4.
7794
7795 2002-10-09  Ulrich Drepper  <drepper@redhat.com>
7796
7797         * pthread_mutex_lock.c: Always record lock ownership.
7798         * pthread_mutex_timedlock.c: Likewise.
7799         * pthread_mutex_trylock.c: Likewise.
7800
7801         * pt-readv.c: New file.
7802         * pt-writev.c: New file.
7803         * pt-creat.c: New file.
7804         * pt-msgrcv.c: New file.
7805         * pt-msgsnd.c: New file.
7806         * pt-poll.c: New file.
7807         * pt-select.c: New file.
7808         * pt-sigpause.c: New file.
7809         * pt-sigsuspend.c: New file.
7810         * pt-sigwait.c: New file.
7811         * pt-sigwaitinfo.c: New file.
7812         * pt-waitid.c: New file.
7813         * Makefile (libpthread-routines): Add pt-readv, pt-writev, pt-creat,
7814         pt-msgrcv, pt-msgsnd, pt-poll, pt-select, pt-sigpause, pt-sigsuspend,
7815         pt-sigwait, pt-sigwaitinfo, and pt-waitid.
7816         * Versions: Add all the new functions.
7817
7818         * tst-exit1.c: New file.
7819         * Makefile (tests): Add tst-exit1.
7820
7821         * sem_timedwait.c: Minor optimization for more optimal fastpath.
7822
7823 2002-10-08  Ulrich Drepper  <drepper@redhat.com>
7824
7825         * pt-fcntl.c: Only enable asynchronous cancellation for F_SETLKW.
7826
7827         * pthread_join.c: Enable asynchronous cancellation around lll_wait_tid
7828         call.  pthread_join is an official cancellation point.
7829         * pthread_timedjoin.c: Likewise.
7830
7831         * pthread_cond_wait.c: Revert order in which internal lock are dropped
7832         and the condvar's mutex are retrieved.
7833         * pthread_cond_timedwait.c: Likewise.
7834         Reported by dice@saros.East.Sun.COM.
7835
7836 2002-10-07  Ulrich Drepper  <drepper@redhat.com>
7837
7838         * pthreadP.h: Cut out all type definitions and move them...
7839         * sysdeps/unix/sysv/linux/internaltypes.h: ...here.  New file.
7840         * pthreadP.h: Include <internaltypes.h>.
7841
7842         * sysdeps/unix/sysv/linux/i386/lowlevelsem.h (lll_sem_post): Little
7843         performance tweaks.
7844
7845         * sem_trywait.c: Shuffle #includes around to get right order.
7846         * sem_timedwait.c: Likewise.
7847         * sem_post.c: Likewise.
7848         * sem_wait.c: Likewise.
7849
7850         * nptl 0.3 released.
7851
7852         * Makefile (tests): Add tst-signal3.
7853         * tst-signal3.c: New file.
7854
7855 2002-10-05  Ulrich Drepper  <drepper@redhat.com>
7856
7857         * sysdeps/unix/sysv/linux/i386/lowlevelsem.h: Tell the compiler that
7858         the asms modify the sem object.
7859         (__lll_sem_timedwait): Now takes struct sem* as first parameter.
7860
7861         * sysdeps/unix/sysv/linux/i386/bits/semaphore.h (sem_t): Don't expose
7862         the actual members.
7863         * pthreadP.h (struct sem): New type.  Actual semaphore type.
7864         * semaphoreP.h: Include pthreadP.h.
7865         * sem_getvalue.c: Adjust to sem_t change.
7866         * sem_init.c: Likewise.
7867         * sem_open.c: Likewise.
7868         * sem_post.c: Likewise.
7869         * sem_timedwait.c: Likewise.
7870         * sem_trywait.c: Likewise.
7871         * sem_wait.c: Likewise.
7872
7873 2002-10-04  Ulrich Drepper  <drepper@redhat.com>
7874
7875         * Makefile (tests): Add tst-basic2, tst-exec1, tst-exec3, tst-exec3.
7876         * tst-basic2.c: New file.
7877         * tst-exec1.c: New file.
7878         * tst-exec2.c: New file.
7879         * tst-exec3.c: New file.
7880
7881         * tst-fork1.c: Remove extra */.
7882
7883         * nptl 0.2 released.  The API for IA-32 is complete.