summaryrefslogtreecommitdiffstats
path: root/src/base/cmd
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2006-04-19 08:01:00 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2006-04-19 08:01:00 -0700
commit73b8d1dd79f4cca7821b78df0da999d6ea6872e6 (patch)
treea1af4122d60ad491acb3e9d3d183db1ca95eb64d /src/base/cmd
parentc1710767b298a8acae16421a660a0874255636a5 (diff)
downloadabc-73b8d1dd79f4cca7821b78df0da999d6ea6872e6.tar.gz
abc-73b8d1dd79f4cca7821b78df0da999d6ea6872e6.tar.bz2
abc-73b8d1dd79f4cca7821b78df0da999d6ea6872e6.zip
Version abc60419
Diffstat (limited to 'src/base/cmd')
-rw-r--r--src/base/cmd/cmd.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/base/cmd/cmd.c b/src/base/cmd/cmd.c
index 93fe2b90..ac012516 100644
--- a/src/base/cmd/cmd.c
+++ b/src/base/cmd/cmd.c
@@ -168,6 +168,14 @@ int CmdCommandTime( Abc_Frame_t * pAbc, int argc, char **argv )
pAbc->TimeTotal += pAbc->TimeCommand;
fprintf( pAbc->Out, "elapse: %3.2f seconds, total: %3.2f seconds\n",
(float)pAbc->TimeCommand / CLOCKS_PER_SEC, (float)pAbc->TimeTotal / CLOCKS_PER_SEC );
+/*
+ {
+ FILE * pTable;
+ pTable = fopen( "runtimes.txt", "a+" );
+ fprintf( pTable, "%4.2f\n", (float)pAbc->TimeCommand / CLOCKS_PER_SEC );
+ fclose( pTable );
+ }
+*/
pAbc->TimeCommand = 0;
return 0;