diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-01-30 01:38:09 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-01-30 01:38:09 +0000 |
commit | e474ca7824d7d78edc78def3181c4887ceba77cb (patch) | |
tree | ad3effcb24d340a196e63c624f6d351f7b02fe75 /nptl | |
parent | e2f52c1f787e5cb40cc1b46a9280d8e51ef598e2 (diff) | |
download | glibc-e474ca7824d7d78edc78def3181c4887ceba77cb.tar glibc-e474ca7824d7d78edc78def3181c4887ceba77cb.tar.gz glibc-e474ca7824d7d78edc78def3181c4887ceba77cb.tar.bz2 glibc-e474ca7824d7d78edc78def3181c4887ceba77cb.zip |
Update.
2003-01-29 Ulrich Drepper <drepper@redhat.com>
* Makefile (tests): Add tst-umask1.
(tst-umask1-ARGS): Define.
* tst-umask1.c: New file.
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/ChangeLog | 6 | ||||
-rw-r--r-- | nptl/Makefile | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 26bbedd281..f6977abad8 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,9 @@ +2003-01-29 Ulrich Drepper <drepper@redhat.com> + + * Makefile (tests): Add tst-umask1. + (tst-umask1-ARGS): Define. + * tst-umask1.c: New file. + 2003-01-28 Ulrich Drepper <drepper@redhat.com> * Makefile (libpthread-routines): Remove lowlevelrwlock. Add diff --git a/nptl/Makefile b/nptl/Makefile index 507e1f8c92..6c1ef9418e 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -150,7 +150,8 @@ tests = tst-mutex1 tst-mutex2 tst-mutex3 tst-mutex4 tst-mutex5 tst-mutex6 \ tst-stack1 \ tst-unload \ tst-sysconf \ - tst-locale1 tst-locale2 + tst-locale1 tst-locale2 \ + tst-umask1 LDFLAGS-pthread.so = -Wl,--enable-new-dtags,-z,nodelete,-z,initfirst @@ -216,6 +217,7 @@ CFLAGS-pthread_self.os += -fomit-frame-pointer CFLAGS-tst-unload.c += -DPREFIX=\"$(objpfx)\" tst-cancel7-ARGS = --command "$(built-program-cmd)" +tst-umask1-ARGS = $(objpfx)tst-umask1.temp extra-B-pthread.so = -B$(common-objpfx)nptl/ $(objpfx)libpthread.so: $(objpfx)crti.o |