Diff for /gforth/prim between versions 1.260 and 1.261

version 1.260, 2011/11/21 19:05:01 version 1.261, 2011/12/02 21:59:09
Line 2035  dsystem = DZERO; Line 2035  dsystem = DZERO;
   
 ntime   ( -- dtime )    gforth  ntime   ( -- dtime )    gforth
 ""Report the current time in nanoseconds since some epoch.""  ""Report the current time in nanoseconds since some epoch.""
   #ifdef HAVE_CLOCK_GETTIME
 struct timespec time1;  struct timespec time1;
 clock_gettime(CLOCK_REALTIME,&time1);  clock_gettime(CLOCK_REALTIME,&time1);
 dtime = timespec2ns(&time1);  dtime = timespec2ns(&time1);
   #else
   struct timeval time1;
   gettimeofday(&time1,NULL);
   dtime = timeval2us(&time1) * 1000LL;
   #endif
   
 \+  \+
   

Removed from v.1.260  
changed lines
  Added in v.1.261


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>