update thread setup with a good cap
[physics.git] / src / ticks.h
index 4f9ef0b..3c89a2e 100644 (file)
 
 /// ***** Public Methods *****
 
+typedef long int MICRO;
+
 // returns the current seconds from program start
-long int tickCountSec();
+MICRO tickCountSec();
 
 // returns the current milliseconds from program start
-long int tickCountMilli();
+MICRO tickCountMilli();
 
 // returns the current microseconds from program start
-long int tickCountMicro();
+MICRO tickCountMicro();
 
 #endif // TICKS_H