about summary refs log tree commit diff
path: root/rt
diff options
context:
space:
mode:
Diffstat (limited to 'rt')
-rw-r--r--rt/Makefile7
-rw-r--r--rt/Versions8
2 files changed, 13 insertions, 2 deletions
diff --git a/rt/Makefile b/rt/Makefile
index 2044eb4bf6..b2688f92be 100644
--- a/rt/Makefile
+++ b/rt/Makefile
@@ -1,4 +1,4 @@
-# Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
+# Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 # This file is part of the GNU C Library.
 
 # The GNU C Library is free software; you can redistribute it and/or
@@ -26,7 +26,10 @@ headers	:= aio.h
 librt-routines := aio_cancel aio_error aio_fsync aio_misc aio_read	\
 		  aio_read64 aio_return aio_suspend aio_write		\
 		  aio_write64 lio_listio lio_listio64 aio_sigqueue	\
-		  aio_notify
+		  aio_notify get_clockfreq clock_getcpuclockid		\
+		  clock_getres clock_gettime clock_settime		\
+		  timer_create timer_delete timer_getoverr		\
+		  timer_gettime timer_settime
 
 # Make sure that everything is distributed independent of configuration.
 distribute := aio_misc.h $(librt-routines:=.c) $(librt-map)
diff --git a/rt/Versions b/rt/Versions
index abe9e33423..aec059c06a 100644
--- a/rt/Versions
+++ b/rt/Versions
@@ -5,4 +5,12 @@ librt {
     aio_init; aio_read; aio_read64; aio_return; aio_return64; aio_suspend;
     aio_suspend64; aio_write; aio_write64; lio_listio; lio_listio64;
   }
+  GLIBC_2.2 {
+    # c*
+    clock_getres; clock_gettime; clock_settime; clock_getcpuclockid;
+
+    # t*
+    timer_create; timer_delete; timer_getoverrun; timer_gettime;
+    timer_settime;
+  }
 }