Commit 6011fb6d authored by Marko Mäkelä's avatar Marko Mäkelä

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.
parent d831e4c2
...@@ -841,7 +841,7 @@ srv_suspend_thread( ...@@ -841,7 +841,7 @@ srv_suspend_thread(
@return whether the wait timed out */ @return whether the wait timed out */
static static
bool 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) ulint timeout_usec = 0)
{ {
bool timeout; bool timeout;
......
...@@ -991,7 +991,7 @@ srv_suspend_thread( ...@@ -991,7 +991,7 @@ srv_suspend_thread(
@return whether the wait timed out */ @return whether the wait timed out */
static static
bool 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) ulint timeout_usec = 0)
{ {
bool timeout; bool timeout;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment