我正在尝试扩展系统调用my_time
。
我正在为此扩展 timekeeping.c。但它给了我随机的时间。
struct timeval tv;
// get the current time
do_gettimeofday(&tv);
current_time->tv_sec=tv.tv_sec;
current_time->tv_nsec=tv.tv_usec*1000;
return( current_time->tv_nsec);
我正在尝试扩展系统调用my_time
。
我正在为此扩展 timekeeping.c。但它给了我随机的时间。
struct timeval tv;
// get the current time
do_gettimeofday(&tv);
current_time->tv_sec=tv.tv_sec;
current_time->tv_nsec=tv.tv_usec*1000;
return( current_time->tv_nsec);