1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-09 22:24:09 +03:00

Post-push fix for MDEV-11947 InnoDB purge workers fail to shut down

Use the ib_int64_t type alias instead of the standard type int64_t,
so that the code will compile on Microsoft Visual Studio 2013.
This commit is contained in:
Marko Mäkelä
2017-02-09 08:47:38 +02:00
parent d831e4c22a
commit 6011fb6daa
2 changed files with 2 additions and 2 deletions

View File

@@ -841,7 +841,7 @@ srv_suspend_thread(
@return whether the wait timed out */
static
bool
srv_resume_thread(srv_slot_t* slot, int64_t sig_count = 0, bool wait = true,
srv_resume_thread(srv_slot_t* slot, ib_int64_t sig_count = 0, bool wait = true,
ulint timeout_usec = 0)
{
bool timeout;

View File

@@ -991,7 +991,7 @@ srv_suspend_thread(
@return whether the wait timed out */
static
bool
srv_resume_thread(srv_slot_t* slot, int64_t sig_count = 0, bool wait = true,
srv_resume_thread(srv_slot_t* slot, ib_int64_t sig_count = 0, bool wait = true,
ulint timeout_usec = 0)
{
bool timeout;