1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-03-05 18:13:27 +00:00

revert changes from PProcess to PLibraryProcess due console locking issue.

This commit is contained in:
root 2010-08-03 18:09:56 +04:00
parent c1e5613e62
commit aa8692576c
2 changed files with 5 additions and 7 deletions
src/mod/endpoints/mod_h323

@ -338,16 +338,14 @@ PString GetH245CodecName(const H323Capability* cap)
} }
FSProcess::FSProcess() FSProcess::FSProcess()
: PProcess("FreeSWITCH", "mod_h323", 1, 0, AlphaCode, 1) : PLibraryProcess("Test", "mod_h323", 1, 0, AlphaCode, 1)
, m_h323endpoint(NULL) , m_h323endpoint(NULL){
{
PTrace::SetLevel(4); PTrace::SetLevel(4);
PTrace::SetOptions(PTrace::TraceLevel); PTrace::SetOptions(PTrace::TraceLevel);
PTrace::SetStream(new FSTrace); PTrace::SetStream(new FSTrace);
} }
FSProcess::~FSProcess() FSProcess::~FSProcess(){
{
delete m_h323endpoint; delete m_h323endpoint;
} }

@ -208,8 +208,8 @@ switch_status_t name(type1 name1)
switch_status_t name(type1 name1, type2 name2, type3 name3) switch_status_t name(type1 name1, type2 name2, type3 name3)
class FSH323EndPoint; class FSH323EndPoint;
class FSProcess:public PProcess { class FSProcess:public PLibraryProcess {
PCLASSINFO(FSProcess, PProcess); PCLASSINFO(FSProcess, PLibraryProcess);
public: public:
FSProcess(); FSProcess();