diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-08 19:54:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-08 19:54:27 +0000 |
commit | 2715f28ad4494dcf5da41398a6dbf2e43042620d (patch) | |
tree | fb103624f45a43a68e3be22ee61f43d2e3732645 /linuxthreads/sysdeps/pthread/Makefile | |
parent | 47bc7a9be10c67151eaf0eed7f895c77d3f820d1 (diff) | |
download | glibc-2715f28ad4494dcf5da41398a6dbf2e43042620d.tar.gz glibc-2715f28ad4494dcf5da41398a6dbf2e43042620d.tar.xz glibc-2715f28ad4494dcf5da41398a6dbf2e43042620d.zip |
Update.
* sysdeps/pthread/Makefile: New file. Add rules to build timer functionality. * sysdeps/unix/sysv/linux/bits/local_lim.h: Add TIMER_MAX. 2000-06-04 Kaz Kylheku <kaz@ashi.footprints.net> * sysdeps/pthread/posix-timer.h: New file. * sysdeps/pthread/timer_create.c: New file. * sysdeps/pthread/timer_delete.c: New file. * sysdeps/pthread/timer_getoverr.c: New file. * sysdeps/pthread/timer_gettime.c: New file. * sysdeps/pthread/timer_routines.c: New file. * sysdeps/pthread/timer_settime.c: New file. * sysdeps/pthread/tst-timer.c: New file. 2000-06-08 Ulrich Drepper <drepper@redhat.com>
Diffstat (limited to 'linuxthreads/sysdeps/pthread/Makefile')
-rw-r--r-- | linuxthreads/sysdeps/pthread/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/linuxthreads/sysdeps/pthread/Makefile b/linuxthreads/sysdeps/pthread/Makefile new file mode 100644 index 0000000000..e896cadf43 --- /dev/null +++ b/linuxthreads/sysdeps/pthread/Makefile @@ -0,0 +1,13 @@ +ifeq ($(subdir),rt) +librt-routines += timer_routines + +ifeq ($(have-thread-library),yes) +tests += tst-timer +endif + +ifeq (yes,$(build-shared)) +$(objpfx)tst-timer: $(objpfx)librt.so $(shared-thread-library) +else +$(objpfx)tst-timer: $(objpfx)librt.a $(static-thread-library) +endif +endif |