22 lines
215 B
C
22 lines
215 B
C
#include "type.h"
|
|
#include "time.h"
|
|
|
|
static size_t timecounter;
|
|
|
|
/*
|
|
* 时间戳加一
|
|
*/
|
|
void
|
|
timecounter_inc()
|
|
{
|
|
timecounter++;
|
|
}
|
|
|
|
/*
|
|
* 获取内核当前的时间戳
|
|
*/
|
|
size_t
|
|
clock()
|
|
{
|
|
return timecounter;
|
|
} |