diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-07-26 06:30:30 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-07-26 06:30:30 +0000 |
commit | 025a5afa2df2c13cd5a35ffb15acdf61b6ebb681 (patch) | |
tree | 174e7214dfb2ed94ba98b2f792623ba8d85ec020 /rt/Makefile | |
parent | b7ed26c6633ae836938d056490ab4efaa0749af0 (diff) | |
download | glibc-025a5afa2df2c13cd5a35ffb15acdf61b6ebb681.tar.gz glibc-025a5afa2df2c13cd5a35ffb15acdf61b6ebb681.tar.xz glibc-025a5afa2df2c13cd5a35ffb15acdf61b6ebb681.zip |
Update.
* rt/lio_listio.c (lio_listio): Always disable individual notification. * rt/Makefile: Add rules to build and run tst-aio2. * rt/tst-aio2.c: New file.
Diffstat (limited to 'rt/Makefile')
-rw-r--r-- | rt/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rt/Makefile b/rt/Makefile index efaf19ded9..8eb019662e 100644 --- a/rt/Makefile +++ b/rt/Makefile @@ -40,7 +40,7 @@ include ../Makeconfig ifeq ($(have-thread-library),yes) -tests := tst-aio tst-aio64 tst-clock tst-shm tst-timer +tests := tst-aio tst-aio64 tst-clock tst-shm tst-timer tst-aio2 extra-libs := librt extra-libs-others := $(extra-libs) @@ -56,11 +56,13 @@ $(objpfx)librt.so: $(common-objpfx)libc.so $(shared-thread-library) ifeq (yes,$(build-shared)) $(objpfx)tst-aio: $(objpfx)librt.so $(shared-thread-library) +$(objpfx)tst-aio2: $(objpfx)librt.so $(shared-thread-library) $(objpfx)tst-aio64: $(objpfx)librt.so $(shared-thread-library) $(objpfx)tst-clock: $(objpfx)librt.so $(shared-thread-library) $(objpfx)tst-shm: $(objpfx)librt.so $(shared-thread-library) else $(objpfx)tst-aio: $(objpfx)librt.a $(static-thread-library) +$(objpfx)tst-aio2: $(objpfx)librt.a $(static-thread-library) $(objpfx)tst-aio64: $(objpfx)librt.a $(static-thread-library) $(objpfx)tst-clock: $(objpfx)librt.a $(static-thread-library) $(objpfx)tst-shm: $(objpfx)librt.a $(static-thread-library) |