summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/clockgettime.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-04-13 05:28:28 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-04-13 05:28:28 +0000
commit1ee474eafc5d9996ede377a14fd4c514a852b208 (patch)
tree49edeb22f8043f29206258308e4af693c1ae6bd7 /cpukit/posix/src/clockgettime.c
parent2007-04-13 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-1ee474eafc5d9996ede377a14fd4c514a852b208.tar.bz2
#ifdef CLOCK_MONOTONIC the CLOCK_MONOTONIC case.
Diffstat (limited to 'cpukit/posix/src/clockgettime.c')
-rw-r--r--cpukit/posix/src/clockgettime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/posix/src/clockgettime.c b/cpukit/posix/src/clockgettime.c
index 08751c23d6..938b6f87e3 100644
--- a/cpukit/posix/src/clockgettime.c
+++ b/cpukit/posix/src/clockgettime.c
@@ -35,7 +35,7 @@ int clock_gettime(
_TOD_Get(tp);
break;
-#if 0
+#ifdef CLOCK_MONOTONIC
case CLOCK_MONOTONIC:
_TOD_Get_uptime(tp);
break;