Commit a6bc4658 authored by Yoni Fogel's avatar Yoni Fogel

fix windows build (remove use of poisoned pthread function)

git-svn-id: file:///svn/toku/tokudb@18271 c7de825b-a66e-492c-adef-691d508d4ae1
parent 492c8098
......@@ -230,7 +230,7 @@ release_output (TOKULOGGER logger, LSN fsynced_lsn)
// Exit: Holds neither locks nor output permission.
{
int r;
r = pthread_mutex_lock(&logger->output_condition_lock); assert(r==0);
r = toku_pthread_mutex_lock(&logger->output_condition_lock); assert(r==0);
logger->output_is_available = TRUE;
if (logger->fsynced_lsn.lsn < fsynced_lsn.lsn) {
logger->fsynced_lsn = fsynced_lsn;
......
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