のシステムコールを延長しようとしています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);