Fixed missing return in process_pollq and added mysql.h to get rid of

warning about mysql_thread calls
This commit is contained in:
Mark Riddoch 2014-09-25 11:36:17 +01:00
parent 3ac3a60229
commit dff6fff888

View File

@ -30,6 +30,7 @@
#include <gw.h>
#include <config.h>
#include <housekeeper.h>
#include <mysql.h>
#define PROFILE_POLL 1
@ -854,6 +855,8 @@ uint32_t ev;
}
dcb->evq.processing = 0;
spinlock_release(&pollqlock);
return 1;
}
/**