summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/tasks.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-09-06 15:16:19 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-09-06 15:16:19 +0000
commit7fea679b6f4c376cf068eaee987d3ff4e415b23e (patch)
treebbcdc26257c60b66b264d7b143692104fe4b6757 /cpukit/rtems/src/tasks.c
parentdefault thread attributes: default value for inheritsched changed from (diff)
downloadrtems-7fea679b6f4c376cf068eaee987d3ff4e415b23e.tar.bz2
changed _TOD_Is_set from a function to a boolean variable
Diffstat (limited to 'cpukit/rtems/src/tasks.c')
-rw-r--r--cpukit/rtems/src/tasks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/rtems/src/tasks.c b/cpukit/rtems/src/tasks.c
index 403a26e0d4..2f78b015f4 100644
--- a/cpukit/rtems/src/tasks.c
+++ b/cpukit/rtems/src/tasks.c
@@ -1034,7 +1034,7 @@ rtems_time_of_day *time_buffer
{
Watchdog_Interval seconds;
- if ( !_TOD_Is_set() )
+ if ( !_TOD_Is_set )
return RTEMS_NOT_DEFINED;
time_buffer->ticks = 0;