b****y 发帖数: 169 | 1 经反复检验,
clock()和times()都只能到百分之一秒,
无论是在linux上还是Sun上。
gettimeofday 倒是可以得到微秒级的系统
时间,但不是我要的进程时间。不知有没有
其他办法呀?
谢谢。 |
f*******u 发帖数: 76 | 2 how about getrusage()?
【在 b****y 的大作中提到】 : 经反复检验, : clock()和times()都只能到百分之一秒, : 无论是在linux上还是Sun上。 : gettimeofday 倒是可以得到微秒级的系统 : 时间,但不是我要的进程时间。不知有没有 : 其他办法呀? : 谢谢。
|
b****y 发帖数: 169 | 3 Thank you.
But according to my test, it's also with
precision 0.01second.
There is another possiblility on SunOS:
gethrvtime(). which does not work on Linux.
【在 f*******u 的大作中提到】 : how about getrusage()?
|
l******t 发帖数: 108 | 4
it's gethrtime()
hr means high resolution
someone tell me that if you run your program using
'ptime your_program'
then the timing is the process time
【在 b****y 的大作中提到】 : Thank you. : But according to my test, it's also with : precision 0.01second. : There is another possiblility on SunOS: : gethrvtime(). which does not work on Linux.
|
a**s 发帖数: 1398 | 5 只能到这一步了。
【在 b****y 的大作中提到】 : 经反复检验, : clock()和times()都只能到百分之一秒, : 无论是在linux上还是Sun上。 : gettimeofday 倒是可以得到微秒级的系统 : 时间,但不是我要的进程时间。不知有没有 : 其他办法呀? : 谢谢。
|