~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzleimport.cc

  • Committer: Monty Taylor
  • Date: 2008-09-23 14:19:48 UTC
  • mto: This revision was merged to the branch mainline in revision 419.
  • Revision ID: monty@inaugust.com-20080923141948-ktph2kg13addaxq1
Actually removed VOID() this time.

Show diffs side-by-side

added added

removed removed

Lines of Context:
536
536
    pthread_attr_setdetachstate(&attr,
537
537
                                PTHREAD_CREATE_DETACHED);
538
538
 
539
 
    VOID(pthread_mutex_init(&counter_mutex, NULL));
540
 
    VOID(pthread_cond_init(&count_threshhold, NULL));
 
539
    pthread_mutex_init(&counter_mutex, NULL);
 
540
    pthread_cond_init(&count_threshhold, NULL);
541
541
 
542
542
    for (counter= 0; *argv != NULL; argv++) /* Loop through tables */
543
543
    {
576
576
      pthread_cond_timedwait(&count_threshhold, &counter_mutex, &abstime);
577
577
    }
578
578
    pthread_mutex_unlock(&counter_mutex);
579
 
    VOID(pthread_mutex_destroy(&counter_mutex));
580
 
    VOID(pthread_cond_destroy(&count_threshhold));
 
579
    pthread_mutex_destroy(&counter_mutex);
 
580
    pthread_cond_destroy(&count_threshhold);
581
581
    pthread_attr_destroy(&attr);
582
582
  }
583
583
  else