~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/queues.c

  • Committer: Brian Aker
  • Date: 2008-07-13 22:21:51 UTC
  • Revision ID: brian@tangent.org-20080713222151-fv2tcpbsc829j2oc
Ulonglong to uint64_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
386
386
static uint expected_num= 0;
387
387
static bool max_ind= 0;
388
388
static bool fix_used= 0;
389
 
static ulonglong start_time= 0;
 
389
static uint64_t start_time= 0;
390
390
 
391
391
static bool is_divisible_by(uint num, uint divisor)
392
392
{
601
601
 
602
602
static void stop_measurement()
603
603
{
604
 
  ulonglong stop_time= my_getsystime();
 
604
  uint64_t stop_time= my_getsystime();
605
605
  uint time_in_micros;
606
606
  stop_time-= start_time;
607
607
  stop_time/= 10; /* Convert to microseconds */