~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/archive/concurrency_test.c

  • Committer: Monty Taylor
  • Date: 2009-01-06 18:46:25 UTC
  • mto: This revision was merged to the branch mainline in revision 762.
  • Revision ID: mordred@inaugust.com-20090106184625-kqu7nsnwjwm5jv4s
Enabled dirty_close.

Show diffs side-by-side

added added

removed removed

Lines of Context:
166
166
    timer_alarm= true;
167
167
    pthread_mutex_unlock(&timer_alarm_mutex);
168
168
 
169
 
    if (pthread_create(&mainthread, &attr, timer_thread, 
 
169
    if (pthread_create(&mainthread, &attr, timer_thread,
170
170
                       (void *)&opt_timer_length) != 0)
171
171
    {
172
172
      fprintf(stderr,"%s: Could not create timer thread\n", my_progname);
211
211
  time_t *timer_length= (time_t *)p;
212
212
  struct timespec abstime;
213
213
 
214
 
  /* 
215
 
    We lock around the initial call in case were we in a loop. This 
 
214
  /*
 
215
    We lock around the initial call in case were we in a loop. This
216
216
    also keeps the value properly syncronized across call threads.
217
217
  */
218
218
  pthread_mutex_lock(&sleeper_mutex);
254
254
  while (master_wakeup)
255
255
  {
256
256
    pthread_cond_wait(&sleep_threshhold, &sleeper_mutex);
257
 
  } 
 
257
  }
258
258
  pthread_mutex_unlock(&sleeper_mutex);
259
259
 
260
260
  /* Do Stuff */
312
312
  /* Avoid zero length strings */
313
313
  length++;
314
314
 
315
 
  get_random_string(buffer, length); 
 
315
  get_random_string(buffer, length);
316
316
  pthread_mutex_lock(&row_lock);
317
317
  azwrite_row(s, buffer, length);
318
318
  pthread_mutex_unlock(&row_lock);