Changeset 05504b7 in git
- Timestamp:
- Feb 7, 2007, 11:44:44 AM (16 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- bccc3fcf764b040cb2f6573b1c8756d685b5eb0b
- Parents:
- a8976eb09895f495e61ce8a925b5527f257badd4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/timer.cc
ra8976e r05504b7 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: timer.cc,v 1. 2 2005-07-26 17:04:15Singular Exp $ */4 /* $Id: timer.cc,v 1.3 2007-02-07 10:44:44 Singular Exp $ */ 5 5 6 6 /* … … 119 119 * if this time is > mintime sec 120 120 */ 121 #ifdef EXTEND_TIMER_D 122 extern int iiOp; 123 #endif 121 124 void writeTime(char* v) 122 125 { … … 128 131 double f = ((double)curr) / (double)HZ; 129 132 if (f > mintime) 133 { 134 #ifdef EXTEND_TIMER_D 135 Print("//%s %.2f sec (%d) >>%s<<\n" ,v ,f,iiOp,my_yylinebuf); 136 #else 130 137 Print("//%s %.2f sec\n" ,v ,f); 138 #endif 139 } 131 140 } 132 141
Note: See TracChangeset
for help on using the changeset viewer.