[BACK]Return to safile.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / aucat

Diff for /src/usr.bin/aucat/Attic/safile.c between version 1.12 and 1.13

version 1.12, 2009/02/06 08:26:34 version 1.13, 2009/07/25 08:44:27
Line 214 
Line 214 
         gettimeofday(&tv1, NULL);          gettimeofday(&tv1, NULL);
         timersub(&tv1, &tv0, &dtv);          timersub(&tv1, &tv0, &dtv);
         us = dtv.tv_sec * 1000000 + dtv.tv_usec;          us = dtv.tv_sec * 1000000 + dtv.tv_usec;
         DPRINTFN(us < 5000 ? 4 : 1,          DPRINTFN(us < 5000 ? 4 : 2,
             "safile_read: %s: got %d bytes in %uus\n",              "safile_read: %s: got %d bytes in %uus\n",
             f->file.name, n, us);              f->file.name, n, us);
 #endif  #endif
Line 253 
Line 253 
         gettimeofday(&tv1, NULL);          gettimeofday(&tv1, NULL);
         timersub(&tv1, &tv0, &dtv);          timersub(&tv1, &tv0, &dtv);
         us = dtv.tv_sec * 1000000 + dtv.tv_usec;          us = dtv.tv_sec * 1000000 + dtv.tv_usec;
         DPRINTFN(us < 5000 ? 4 : 1,          DPRINTFN(us < 5000 ? 4 : 2,
             "safile_write: %s: wrote %d bytes in %uus\n",              "safile_write: %s: wrote %d bytes in %uus\n",
             f->file.name, n, us);              f->file.name, n, us);
 #endif  #endif

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13