revert debugging stuff
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@944 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
fd557f4ca3
commit
2ac8184a7f
|
@ -27,9 +27,6 @@
|
||||||
|
|
||||||
#include "jthread.h"
|
#include "jthread.h"
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
|
||||||
#include <errno.h>
|
|
||||||
#include <string.h>
|
|
||||||
|
|
||||||
JThread::JThread()
|
JThread::JThread()
|
||||||
{
|
{
|
||||||
|
@ -51,24 +48,18 @@ int JThread::Start()
|
||||||
{
|
{
|
||||||
if (!runningmutex.IsInitialized())
|
if (!runningmutex.IsInitialized())
|
||||||
{
|
{
|
||||||
if (runningmutex.Init() < 0) {
|
if (runningmutex.Init() < 0)
|
||||||
printf("STUPID 1\n");
|
|
||||||
return ERR_JTHREAD_CANTINITMUTEX;
|
return ERR_JTHREAD_CANTINITMUTEX;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (!continuemutex.IsInitialized())
|
if (!continuemutex.IsInitialized())
|
||||||
{
|
{
|
||||||
if (continuemutex.Init() < 0) {
|
if (continuemutex.Init() < 0)
|
||||||
printf("STUPID 2\n");
|
|
||||||
return ERR_JTHREAD_CANTINITMUTEX;
|
return ERR_JTHREAD_CANTINITMUTEX;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (!continuemutex2.IsInitialized())
|
if (!continuemutex2.IsInitialized())
|
||||||
{
|
{
|
||||||
if (continuemutex2.Init() < 0) {
|
if (continuemutex2.Init() < 0)
|
||||||
printf("STUPID 3\n");
|
|
||||||
return ERR_JTHREAD_CANTINITMUTEX;
|
return ERR_JTHREAD_CANTINITMUTEX;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
mutexinit = true;
|
mutexinit = true;
|
||||||
}
|
}
|
||||||
|
@ -77,7 +68,6 @@ int JThread::Start()
|
||||||
if (running)
|
if (running)
|
||||||
{
|
{
|
||||||
runningmutex.Unlock();
|
runningmutex.Unlock();
|
||||||
printf("STUPID 4\n");
|
|
||||||
return ERR_JTHREAD_ALREADYRUNNING;
|
return ERR_JTHREAD_ALREADYRUNNING;
|
||||||
}
|
}
|
||||||
runningmutex.Unlock();
|
runningmutex.Unlock();
|
||||||
|
@ -87,7 +77,6 @@ int JThread::Start()
|
||||||
if (status != 0)
|
if (status != 0)
|
||||||
{
|
{
|
||||||
continuemutex.Unlock();
|
continuemutex.Unlock();
|
||||||
printf("STUPID 5 %d (%s) (%s)\n", strerror(errno), strerror(status));
|
|
||||||
return ERR_JTHREAD_CANTSTARTTHREAD;
|
return ERR_JTHREAD_CANTSTARTTHREAD;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue