diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 5cf17ba8b4..b0efa23cc3 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,10 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-09-08 12:09 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/source/vm/thread.c + * removed HB_MT() function body + 2009-09-08 12:03 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbstack.h * harbour/source/vm/estack.c diff --git a/harbour/source/vm/thread.c b/harbour/source/vm/thread.c index aafbfc9bda..ee4ac0a95e 100644 --- a/harbour/source/vm/thread.c +++ b/harbour/source/vm/thread.c @@ -2507,11 +2507,8 @@ HB_FUNC( HB_MTVM ) } #if defined( HB_MT_VM ) -HB_FUNC( HB_MT ) -{ - HB_STACK_TLS_PRELOAD - hb_retl( TRUE ); -} +/* function to use in REQUEST statement in .prg code to force MT HVM */ +HB_FUNC( HB_MT ) { ; } #endif #if defined( HB_TASK_THREAD ) && defined( HB_MT_VM )