summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/time.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-31 23:27:45 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-31 23:27:45 +0000
commit5e7b6272fc10068c22bfedb18a26a23a37e9a7ff (patch)
tree16be850e6b7abcabe3b503f7c3669ddcef0b0805 /cpukit/posix/src/time.c
parentadded checks to validate values passed to set attribute routines (diff)
downloadrtems-5e7b6272fc10068c22bfedb18a26a23a37e9a7ff.tar.bz2
renamed _TOD_Ticks_since_boot as _Watchdog_Ticks_since_boot so the Watchdog
Handler could timestamp the starting and stopping of timers. Since TOD is built on top of Watchdog, this avoided a circular dependency.
Diffstat (limited to 'cpukit/posix/src/time.c')
-rw-r--r--cpukit/posix/src/time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/posix/src/time.c b/cpukit/posix/src/time.c
index f9e5ce835f..945a550296 100644
--- a/cpukit/posix/src/time.c
+++ b/cpukit/posix/src/time.c
@@ -174,7 +174,7 @@ int clock_gettime(
#ifdef _POSIX_CPUTIME
case CLOCK_PROCESS_CPUTIME:
- /* could base this on _TOD_Ticks_since_boot -- must make set work though*/
+ /* could base this on _Watchdog_Ticks_since_boot -- must make set work though*/
return POSIX_NOT_IMPLEMENTED();
break;
#endif