diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-10-24 14:50:46 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-10-24 14:50:46 -0700 |
commit | 6e6249d0b461b952d0f544792372663feb6d792a (patch) | |
tree | 555d1ac3a5e2ca9030d15f2e1760aea1a2e69ba7 /rt/Makefile | |
parent | 0cae3f4b033e441d820f4521fa5736e4e6e4d713 (diff) | |
download | glibc-6e6249d0b461b952d0f544792372663feb6d792a.tar.gz glibc-6e6249d0b461b952d0f544792372663feb6d792a.tar.xz glibc-6e6249d0b461b952d0f544792372663feb6d792a.zip |
BZ#14743: Move clock_* symbols from librt to libc.
Diffstat (limited to 'rt/Makefile')
-rw-r--r-- | rt/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/rt/Makefile b/rt/Makefile index 26d4ffaaf6..4805f8b5b7 100644 --- a/rt/Makefile +++ b/rt/Makefile @@ -36,9 +36,12 @@ mq-routines := mq_open mq_close mq_unlink mq_getattr mq_setattr \ mq_notify mq_send mq_receive mq_timedsend \ mq_timedreceive +routines = $(clock-routines) + librt-routines = $(aio-routines) \ - $(clock-routines) $(timer-routines) \ - $(shm-routines) $(mq-routines) + $(timer-routines) \ + $(shm-routines) $(mq-routines) \ + clock-compat tests := tst-shm tst-clock tst-clock_nanosleep tst-timer tst-timer2 \ tst-aio tst-aio64 tst-aio2 tst-aio3 tst-aio4 tst-aio5 tst-aio6 \ |