~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/thr_alarm.c

Replacing all bzero() calls with memset() calls and removing the bzero.c file.
Also removing check for bzero from the 'configure.ac' autoconf file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
557
557
    }
558
558
    process_alarm(0);
559
559
  }
560
 
  bzero((char*) &alarm_thread,sizeof(alarm_thread)); /* For easy debugging */
 
560
  memset((char*) &alarm_thread, 0, sizeof(alarm_thread)); /* For easy debugging */
561
561
  alarm_thread_running= 0;
562
562
  pthread_cond_signal(&COND_alarm);
563
563
  pthread_mutex_unlock(&LOCK_alarm);