2022年8月3日
摘要: unsigned long GetTickCount() { struct timespec ts; clock_gettime(CLOCK_MONOTONIC,&ts); return (ts.tv_sec * 1000 + ts.tv_nsec/(1000*1000) ); } cygwin下测 阅读全文
posted @ 2022-08-03 19:47 闻缺陷则喜何志丹 阅读(8) 评论(0) 推荐(0) 编辑