|
SoPlex Doxygen Documentation
|
Go to the documentation of this file.
24 #include <sys/types.h>
25 #include <sys/times.h>
41 #define TIMES_TICKS_PER_SEC CLK_TCK
42 #elif defined(_SC_CLK_TCK)
43 #define TIMES_TICKS_PER_SEC sysconf(_SC_CLK_TCK)
45 #define TIMES_TICKS_PER_SEC HZ
46 #else // !CLK_TCK && !_SC_CLK_TCK && !HZ
47 #define TIMES_TICKS_PER_SEC 60
48 #endif // !CLK_TCK && !_SC_CLK_TCK && !HZ
63 clock_t ret = times(&now);
66 now.tms_utime = now.tms_stime = ret = 0;
68 uTicks = long(now.tms_utime);
69 sTicks = long(now.tms_stime);
132 assert((uTime == 0) || (*uTime >= 0.0));
133 assert((sTime == 0) || (*sTime >= 0.0));
134 assert((rTime == 0) || (*rTime >= 0.0));
|