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:
Przemyslaw Czerpak
2010-02-16 23:56:14 +00:00
parent a6425c9539
commit a60bc13346
3 changed files with 21 additions and 1 deletions

View File

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

View File

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

View File

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