diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-26 08:01:33 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-26 08:01:33 +0000 |
commit | c49ebf7645b828a4a82b69791dc23e19b7264e21 (patch) | |
tree | 235fa4a4995064709979e7b7b4faec8568efd928 /linuxthreads/Makefile | |
parent | d82e4c7bb231c9e0f835bd46467563ac3b56cebe (diff) | |
download | glibc-c49ebf7645b828a4a82b69791dc23e19b7264e21.tar glibc-c49ebf7645b828a4a82b69791dc23e19b7264e21.tar.gz glibc-c49ebf7645b828a4a82b69791dc23e19b7264e21.tar.bz2 glibc-c49ebf7645b828a4a82b69791dc23e19b7264e21.zip |
Update.
2000-06-26 Ulrich Drepper <drepper@redhat.com>
* Makefile (tests): Add ex11. Add rules to build it.
* Examples/ex11.c: New file.
* rwlock.c: Fix complete braindamaged previous try to implement
timedout functions.
* spinlock.c: Pretty print.
Diffstat (limited to 'linuxthreads/Makefile')
-rw-r--r-- | linuxthreads/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/linuxthreads/Makefile b/linuxthreads/Makefile index 5c36bd22eb..0bdaaf291c 100644 --- a/linuxthreads/Makefile +++ b/linuxthreads/Makefile @@ -38,7 +38,7 @@ libpthread-routines := attr cancel condvar join manager mutex ptfork \ oldsemaphore events getcpuclockid pspinlock barrier vpath %.c Examples -tests = ex1 ex2 ex3 ex4 ex5 ex6 ex7 ex8 ex9 ex10 joinrace +tests = ex1 ex2 ex3 ex4 ex5 ex6 ex7 ex8 ex9 ex10 ex11 joinrace include ../Rules @@ -72,4 +72,5 @@ $(objpfx)ex7: $(libpthread) $(objpfx)ex8: $(libpthread) $(objpfx)ex9: $(libpthread) $(objpfx)ex10: $(libpthread) $(librt) +$(objpfx)ex11: $(libpthread) $(librt) $(objpfx)joinrace: $(libpthread) |