2009-11-25 03:24 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/src/vm/fm.c
    * removed not longer used HVM stack pointer variables
This commit is contained in:
Przemyslaw Czerpak
2009-11-25 02:24:50 +00:00
parent 6667503c73
commit 5f878fd336
2 changed files with 6 additions and 6 deletions

View File

@@ -17,6 +17,10 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-11-25 03:24 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/vm/fm.c
* removed not longer used HVM stack pointer variables
2009-11-24 18:20 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbide/hbide.prg
+ Started <Project Properties> Dialog.

View File

@@ -1308,17 +1308,13 @@ ULONG hb_xquery( int iMode )
break;
case HB_MEM_STACKITEMS: /* Harbour extension (Total items allocated for the stack) */
{
HB_STACK_TLS_PRELOAD
ulResult = hb_stackTotalItems();
break;
}
case HB_MEM_STACK: /* Harbour extension (Total memory size used by the stack [bytes]) */
{
HB_STACK_TLS_PRELOAD
ulResult = hb_stackTotalItems() * sizeof( HB_ITEM );
break;
}
case HB_MEM_STACK_TOP : /* Harbour extension (Total items currently on the stack) */
{
HB_STACK_TLS_PRELOAD