diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-05-04 19:25:38 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-05-04 19:25:38 +0000 |
commit | 2d7ae2107d3713981a66011ec62d094e32ec46fb (patch) | |
tree | 0446bffdf7488f7d4df9354d993c2206b896fa7d /nptl | |
parent | ce118ec6f3f1dbca08e03d25492f71974e125251 (diff) | |
download | glibc-2d7ae2107d3713981a66011ec62d094e32ec46fb.tar.gz glibc-2d7ae2107d3713981a66011ec62d094e32ec46fb.tar.xz glibc-2d7ae2107d3713981a66011ec62d094e32ec46fb.zip |
Update.
* sysdeps/unix/sysv/linux/ia64/Makefile (librt-routines): Mention rt-sysdep. * sysdeps/unix/sysv/linux/ia64/rt-sysdep.S: New file.
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/ChangeLog | 4 | ||||
-rw-r--r-- | nptl/tst-stack3.c | 7 |
2 files changed, 9 insertions, 2 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 11b282a090..7e3de56ec7 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,5 +1,9 @@ 2004-05-04 Jakub Jelinek <jakub@redhat.com> + * tst-stack3.c: Note testing functionality beyond POSIX. + +2004-05-04 Jakub Jelinek <jakub@redhat.com> + * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h (USE___THREAD): Change conditional from ifdef to if. diff --git a/nptl/tst-stack3.c b/nptl/tst-stack3.c index fa9aeddd9c..d99e1eacf1 100644 --- a/nptl/tst-stack3.c +++ b/nptl/tst-stack3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003 Free Software Foundation, Inc. +/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek <jakub@redhat.com>, 2003. @@ -18,7 +18,10 @@ 02111-1307 USA. */ /* Test whether pthread_create/pthread_join with user defined stacks - doesn't leak memory. */ + doesn't leak memory. + NOTE: this tests functionality beyond POSIX. In POSIX user defined + stacks cannot be ever freed once used by pthread_create nor they can + be reused for other thread. */ #include <limits.h> #include <mcheck.h> |