Commit fb0d4064 authored by unknown's avatar unknown

os0sync.c:

  Check that pthread_mutex_init and pthread_mutex_destroy return 0


innobase/os/os0sync.c:
  Check that pthread_mutex_init and pthread_mutex_destroy return 0
parent 23d7a317
......@@ -446,9 +446,9 @@ os_fast_mutex_init(
InitializeCriticalSection((LPCRITICAL_SECTION) fast_mutex);
#else
#if defined(UNIV_HOTBACKUP) && defined(UNIV_HPUX10)
pthread_mutex_init(fast_mutex, pthread_mutexattr_default);
ut_a(0 == pthread_mutex_init(fast_mutex, pthread_mutexattr_default));
#else
pthread_mutex_init(fast_mutex, MY_MUTEX_INIT_FAST);
ut_a(0 == pthread_mutex_init(fast_mutex, MY_MUTEX_INIT_FAST));
#endif
#endif
}
......@@ -496,6 +496,6 @@ os_fast_mutex_free(
DeleteCriticalSection((LPCRITICAL_SECTION) fast_mutex);
#else
pthread_mutex_destroy(fast_mutex);
ut_a(0 == pthread_mutex_destroy(fast_mutex));
#endif
}
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