fix win32 build after push for bug#17619

sql/event_scheduler.cc:
  remove unused variables
  fix win32 build problem - pthread_mutex_lock() is void there
sql/event_scheduler.h:
  pthread_mutex_lock() is void on win32. This fixes the win32 build.
sql/event_timed.cc:
  remove unused code & variables
This commit is contained in:
unknown 2006-05-23 00:19:02 +02:00
commit b1eaf92cd9
3 changed files with 9 additions and 25 deletions

View file

@ -236,10 +236,10 @@ private:
bool mutex_scheduler_data_locked;
/* helper functions for working with mutexes & conditionals */
int
void
lock_data(const char *func, uint line);
int
void
unlock_data(const char *func, uint line);
int