Update of /cvsroot/monetdb/MonetDB5/src/modules/kernel
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11183/src/modules/kernel

Modified Files:
        status.mx 
Log Message:
propagated changes of Friday Feb 08 2008 - Sunday Feb 10 2008
from the MonetDB_5-4 branch to the development trunk


Index: status.mx
===================================================================
RCS file: /cvsroot/monetdb/MonetDB5/src/modules/kernel/status.mx,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -d -r1.49 -r1.50
--- status.mx   11 Jan 2008 10:41:36 -0000      1.49
+++ status.mx   10 Feb 2008 23:48:46 -0000      1.50
@@ -129,19 +129,19 @@
 comment "Show distribution of bats by kind";
 command getThreads( ):bat[:int,:str] 
 address SYSgdkThread
-comment "Produce overview of active threads";
+comment "Produce overview of active threads.";
 
 command mem_cursize() :lng 
 address SYSgetmem_cursize
-comment "the amount of physical swapspace in KB that is currently in use";
+comment "The amount of physical swapspace in KB that is currently in use.";
 
 command mem_maxsize() :lng 
 address SYSgetmem_maxsize
-comment "the maximum usable amount of physical swapspace in KB (target only)";
+comment "The maximum usable amount of physical swapspace in KB (target only).";
 
 command mem_maxsize(v:lng) :void 
 address set_mem_maxsize
-comment "set the maximum usable amount of physical swapspace in KB";
+comment "Set the maximum usable amount of physical swapspace in KB.";
 
 command vm_cursize() :lng 
 address SYSgetvm_cursize
@@ -400,6 +400,7 @@
 #endif
        sze = (size_t)*num;
 @c
+#if 0
 int
 get_mem_bigsize(lng *num)
 {
@@ -414,6 +415,7 @@
        GDK_mem_bigsize = MAX(32768, sze);
        return GDK_SUCCEED;
 }
+#endif
 
 int
 get_mem_cursize(lng *num)
@@ -433,9 +435,12 @@
 set_mem_maxsize(lng *num)
 {
        @:num2sze(mem_maxsize)@
+#if 0
        if (sze < GDK_mem_bigsize)
                set_mem_bigsize(num);
        GDK_mem_maxsize = MAX(GDK_mem_bigsize, sze);
+#endif
+       GDK_mem_maxsize = sze;
        return GDK_SUCCEED;
 }
 
@@ -457,9 +462,12 @@
 set_vm_minsize(lng *num)
 {
        @:num2sze(vm_minsize)@
+#if 0
        if (sze < GDK_mem_bigsize)
                set_mem_bigsize(num);
        GDK_vm_minsize = MAX(GDK_mem_bigsize, sze);
+#endif
+       GDK_vm_minsize = sze;
        return GDK_SUCCEED;
 }
 


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins

Reply via email to