2008-09-17 22:15 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* contrib/rddado/adordd.prg
! Marking one STATIC var as thread STATIC.
; BTW, this should be revised for whole contrib .prg code.
This commit is contained in:
@@ -8,6 +8,11 @@
|
||||
2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
|
||||
*/
|
||||
|
||||
2008-09-17 22:15 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
|
||||
* contrib/rddado/adordd.prg
|
||||
! Marking one STATIC var as thread STATIC.
|
||||
; BTW, this should be revised for whole contrib .prg code.
|
||||
|
||||
2008-09-17 18:38 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
||||
* harbour/include/hbthread.h
|
||||
+ added macros to disable default native compiler TLS support:
|
||||
|
||||
@@ -83,11 +83,11 @@
|
||||
|
||||
#ifndef __XHARBOUR__
|
||||
#include "hbusrrdd.ch"
|
||||
#xcommand TRY => bError := errorBlock( {|oErr| break( oErr ) } ) ;;
|
||||
#xcommand TRY => s_bError := errorBlock( {|oErr| break( oErr ) } ) ;;
|
||||
BEGIN SEQUENCE
|
||||
#xcommand CATCH [<!oErr!>] => errorBlock( bError ) ;;
|
||||
#xcommand CATCH [<!oErr!>] => errorBlock( s_bError ) ;;
|
||||
RECOVER [USING <oErr>] <-oErr-> ;;
|
||||
errorBlock( bError )
|
||||
errorBlock( s_bError )
|
||||
#command FINALLY => ALWAYS
|
||||
#else
|
||||
#include "usrrdd.ch"
|
||||
@@ -120,7 +120,11 @@
|
||||
|
||||
ANNOUNCE ADORDD
|
||||
|
||||
static bError, s_cTableName, s_cEngine, s_cServer, s_cUserName, s_cPassword, s_cQuery := ""
|
||||
static s_cTableName, s_cEngine, s_cServer, s_cUserName, s_cPassword, s_cQuery := ""
|
||||
|
||||
#ifndef __XHARBOUR__
|
||||
THREAD STATIC s_bError
|
||||
#endif
|
||||
|
||||
#ifdef __XHARBOUR__
|
||||
|
||||
|
||||
Reference in New Issue
Block a user