aboutsummaryrefslogtreecommitdiff
path: root/rt
diff options
context:
space:
mode:
Diffstat (limited to 'rt')
-rw-r--r--rt/Makefile2
-rw-r--r--rt/tst-cpuclock2.c2
2 files changed, 1 insertions, 3 deletions
diff --git a/rt/Makefile b/rt/Makefile
index 14a2df3903..651d007aa4 100644
--- a/rt/Makefile
+++ b/rt/Makefile
@@ -53,8 +53,6 @@ tests := tst-shm tst-clock tst-clock_nanosleep tst-timer tst-timer2 \
extra-libs := librt
extra-libs-others := $(extra-libs)
-distribute := aio_misc.h
-
include ../Rules
CFLAGS-aio_suspend.c = -fexceptions
diff --git a/rt/tst-cpuclock2.c b/rt/tst-cpuclock2.c
index e3545f2e3c..9a74eb014b 100644
--- a/rt/tst-cpuclock2.c
+++ b/rt/tst-cpuclock2.c
@@ -110,7 +110,7 @@ test_nanosleep (clockid_t clock, const char *which,
struct timespec sleeptimeabs = sleeptime;
sleeptimeabs.tv_sec += after.tv_sec;
sleeptimeabs.tv_nsec += after.tv_nsec;
- while (sleeptimeabs.tv_nsec > 1000000000)
+ while (sleeptimeabs.tv_nsec >= 1000000000)
{
++sleeptimeabs.tv_sec;
sleeptimeabs.tv_nsec -= 1000000000;