summaryrefslogtreecommitdiff
path: root/utils/testtimer.cc
diff options
context:
space:
mode:
authorsc2000-11-28 14:19:35 +0000
committersc2000-11-28 14:19:35 +0000
commit325530e630c68c7c10a2f4339f5b43434fcd0329 (patch)
tree8e655f6002598176ed0e9e5e0ba3bcb0971c434d /utils/testtimer.cc
parentb8af7905fd61ce5cb2c94da78ccc9e051f9ceddc (diff)
downloadivy-league-325530e630c68c7c10a2f4339f5b43434fcd0329.zip
ivy-league-325530e630c68c7c10a2f4339f5b43434fcd0329.tar.gz
ivy-league-325530e630c68c7c10a2f4339f5b43434fcd0329.tar.bz2
ivy-league-325530e630c68c7c10a2f4339f5b43434fcd0329.tar.xz
Incorporation into IvyLeague
Ccu -> Ivl ccu -> ivl Smart pointers disappear (too dangerous) Imakefile disappears (Makefile now) An empty cplus_bugs.h has been created locally
Diffstat (limited to 'utils/testtimer.cc')
-rw-r--r--utils/testtimer.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/utils/testtimer.cc b/utils/testtimer.cc
index 3dc4b0c..231b65c 100644
--- a/utils/testtimer.cc
+++ b/utils/testtimer.cc
@@ -7,7 +7,7 @@ int foo_counter = 0;
void
foo (Millisecond)
{
- CcuTimeStamp t;
+ IvlTimeStamp t;
fprintf (stderr, "tic %d\n", (unsigned long) (t));
foo_counter++;
}
@@ -15,7 +15,7 @@ foo (Millisecond)
void
baz (Millisecond)
{
- CcuTimeStamp t;
+ IvlTimeStamp t;
fprintf (stderr, "tac %d\n", (unsigned long) (t));
}
@@ -26,17 +26,17 @@ bar (Millisecond)
// exit (0);
}
-CcuList l;
+IvlList l;
main ()
{
#if 1
- CcuTimer t (1000, foo, 5);
- CcuTimer s (1000, baz);
- CcuTimer tt (10000, bar);
+ IvlTimer t (1000, foo, 5);
+ IvlTimer s (1000, baz);
+ IvlTimer tt (10000, bar);
#else
- CcuTimer t (20, foo);
- CcuTimer tt (10000, bar);
+ IvlTimer t (20, foo);
+ IvlTimer tt (10000, bar);
#endif
for (;;)
;