summaryrefslogtreecommitdiffstats
path: root/cpukit/libblock/src/bdbuf.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-16 20:53:34 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-16 20:53:34 +0000
commit26fb4aadcd2c3159ecca7493c1f3d02cc02149ba (patch)
treee352a00acf541d65590f7c250b9fd9cd61f4e70d /cpukit/libblock/src/bdbuf.c
parent2008-12-16 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-26fb4aadcd2c3159ecca7493c1f3d02cc02149ba.tar.bz2
2008-12-16 Joel Sherrill <joel.sherrill@oarcorp.com>
* libblock/src/bdbuf.c, libmisc/capture/capture-cli.c, libmisc/capture/capture.c, libmisc/mw-fb/mw_uid.c, rtems/include/rtems/rtems/support.h, score/Makefile.am, score/include/rtems/score/tod.h, score/src/coretod.c, score/src/coretodtickle.c: Eliminate all public use of TOD conversion routines. Eliminate _TOD_Microseconds_per_tick and let every place use the field directly from the Configuration Table. This required moving some methods from macros to bodies. * score/src/coretodmsecstoticks.c, score/src/coretodtickspersec.c, score/src/coretodusectoticks.c: New files.
Diffstat (limited to 'cpukit/libblock/src/bdbuf.c')
-rw-r--r--cpukit/libblock/src/bdbuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libblock/src/bdbuf.c b/cpukit/libblock/src/bdbuf.c
index da7d6f8e9c..48751b34f9 100644
--- a/cpukit/libblock/src/bdbuf.c
+++ b/cpukit/libblock/src/bdbuf.c
@@ -2353,7 +2353,7 @@ rtems_bdbuf_swapout_task (rtems_task_argument arg)
write_req->done_arg = write_req;
write_req->io_task = rtems_task_self ();
- period_in_ticks = TOD_MICROSECONDS_TO_TICKS (period_in_msecs * 1000);
+ period_in_ticks = RTEMS_MICROSECONDS_TO_TICKS (period_in_msecs * 1000);
/*
* This is temporary. Needs to be changed to use the real time clock.