Commit 7187686b authored by marko's avatar marko

branches/zip: sync0sync.h: Define mutex_free as mutex0_free, because symbols

defined in innodb_redefine.h must not be undefined.  After this change,
innodb_redefine.h will define mutex0_free instead of mutex_free, and
everything is fine.
parent cf98f660
......@@ -76,6 +76,10 @@ the mutex is freed. Removes a mutex object from the mutex list. The mutex
is checked to be in the reset state. */
#undef mutex_free /* Fix for MacOS X */
#define mutex_free mutex0_free /* Fix for innodb_redefine.h;
we must not undefine symbols
defined there; thus, that file
will use mutex0_free. */
void
mutex_free(
/*=======*/
......
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