From e65c6bc425c057613470e3911a8bda04cd15ee6f Mon Sep 17 00:00:00 2001 From: Lorenzo Fiorini Date: Tue, 3 Feb 2009 10:45:06 +0000 Subject: [PATCH] --- harbour/ChangeLog | 4 ++++ harbour/contrib/xhb/hblognet.prg | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 928c8638c0..faa060248f 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-02-03 11:45 UTC+0100 Lorenzo Fiorini (lorenzo.fiorini/at/gmail.com) + * contib/xhb/hblognet.prg + * fixed thread function names + 2009-02-03 03:02 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/mpkg_deb.sh * harbour/make_gnu_xmingwce.sh diff --git a/harbour/contrib/xhb/hblognet.prg b/harbour/contrib/xhb/hblognet.prg index b06e28f6fe..15e4d5ef8e 100644 --- a/harbour/contrib/xhb/hblognet.prg +++ b/harbour/contrib/xhb/hblognet.prg @@ -259,7 +259,7 @@ METHOD Open( cName ) CLASS HB_LogInetPort #ifdef HB_THREAD_SUPPORT ::mtxBusy := HB_MutexCreate() - ::nThread := StartThread( Self, "AcceptCon" ) + ::nThread := HB_ThreadStart( Self, "AcceptCon" ) #else // If we have not threads, we have to sync accept incoming connection // when we log a message @@ -281,7 +281,7 @@ METHOD Close( cName ) CLASS HB_LogInetPort #ifdef HB_THREAD_SUPPORT // kind termination request ::bTerminate := .T. - JoinThread( ::nThread ) + hb_ThreadJoin( ::nThread ) #endif InetClose( ::skIn )