摘要: #include <iostream>#include <time.h>#include <math.h>using namespace std;typedef long long int int64;int64 GetTickCount(){ timespec now; clock_gettime(CLOCK_MONOTONIC, &now); int64 sec = now.tv_sec; int64 nsec = now.tv_nsec; return sec*1000 + nsec/1000000;}void cpu_sin(){ const 阅读全文
posted @ 2011-03-24 22:24 霞光照耀 阅读(1308) 评论(0) 推荐(0) 编辑