This commit is contained in:
Lorenzo Fiorini
2009-02-03 10:45:06 +00:00
parent bb1e4dfe09
commit e65c6bc425
2 changed files with 6 additions and 2 deletions

View File

@@ -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

View File

@@ -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 )