// Author: Original from Wolfram Gloger/Guilhem Lavaux
// Modified by:
// Created: 04/22/98
-// RCS-ID: $Id$
// Copyright: (c) Wolfram Gloger (1996, 1997); Guilhem Lavaux (1998)
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
wxMutex::~wxMutex()
{
if (m_locked > 0)
+ {
wxLogDebug( "wxMutex warning: freeing a locked mutex (%d locks)\n", m_locked );
+ }
delete p_internal;
}
thr->p_internal->thread_id = getpid();
thr->p_internal->exit_status = 0;
- status = thr->Entry();
+ status = thr->CallEntry();
thr->Exit(status);
}