2010-02-17 00:55 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/rtl/hbsocket.c
* added iTODO warning to OpenWatcom Linux builds
* harbour/src/debug/dbgtmenu.prg
! fixed code used for debugger menu to be MT safe
This commit is contained in:
@@ -17,6 +17,13 @@
|
||||
past entries belonging to author(s): Viktor Szakats.
|
||||
*/
|
||||
|
||||
2010-02-17 00:55 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
||||
* harbour/src/rtl/hbsocket.c
|
||||
* added iTODO warning to OpenWatcom Linux builds
|
||||
|
||||
* harbour/src/debug/dbgtmenu.prg
|
||||
! fixed code used for debugger menu to be MT safe
|
||||
|
||||
2010-02-16 23:36 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* src/rtl/gtwvt/gtwvt.c
|
||||
* contrib/gtwvg/gtwvg.c
|
||||
|
||||
@@ -68,7 +68,7 @@
|
||||
|
||||
CREATE CLASS HBDbMenu
|
||||
|
||||
CLASSDATA aMenus
|
||||
METHOD aMenus SETGET
|
||||
|
||||
VAR nTop
|
||||
VAR nLeft
|
||||
@@ -108,6 +108,16 @@ CREATE CLASS HBDbMenu
|
||||
|
||||
ENDCLASS
|
||||
|
||||
METHOD aMenus( xNewVal ) CLASS HBDbMenu
|
||||
|
||||
THREAD STATIC ts_aMenus
|
||||
|
||||
IF PCount() > 0
|
||||
ts_aMenus := xNewVal
|
||||
ENDIF
|
||||
|
||||
RETURN ts_aMenus
|
||||
|
||||
METHOD New() CLASS HBDbMenu
|
||||
|
||||
IF ::aMenus == NIL
|
||||
|
||||
@@ -2048,9 +2048,12 @@ int hb_socketShutdown( HB_SOCKET sd, int iMode )
|
||||
}
|
||||
|
||||
#if defined( __WATCOMC__ ) && defined( HB_OS_LINUX )
|
||||
{
|
||||
int iTODO;
|
||||
/* it's still not supported by Linux OpenWatcom port :-( */
|
||||
ret = -1;
|
||||
hb_socketSetRawError( HB_SOCKET_ERR_NOSUPPORT );
|
||||
}
|
||||
#else
|
||||
hb_vmUnlock();
|
||||
ret = shutdown( sd, iMode );
|
||||
|
||||
Reference in New Issue
Block a user