* src/cacaoh/cacaoh.c (HEAP_MAXSIZE, HEAP_STARTSIZE): Removed.
authortwisti <none@none>
Wed, 20 Jun 2007 12:24:32 +0000 (12:24 +0000)
committertwisti <none@none>
Wed, 20 Jun 2007 12:24:32 +0000 (12:24 +0000)
(main): Removed heapmaxsize, heapstartsize.

src/cacaoh/cacaoh.c

index 757c14450ef2dc7de59387212c36688aa4d0b21a..9f17d1fbfda989b1491db2b217569cb220c461fd 100644 (file)
@@ -22,7 +22,7 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   $Id: cacaoh.c 7246 2007-01-29 18:49:05Z twisti $
+   $Id: cacaoh.c 8110 2007-06-20 12:24:32Z twisti $
 
 */
 
 #include "vmcore/suck.h"
 
 
-/* define heap sizes **********************************************************/
-
-#define HEAP_MAXSIZE      2 * 1024 * 1024   /* default 2MB                    */
-#define HEAP_STARTSIZE         100 * 1024   /* default 100kB                  */
-
-
 /* define cacaoh options ******************************************************/
 
 enum {
@@ -163,8 +157,6 @@ int main(int argc, char **argv)
        char *classpath;
        char *cp;
        s4    cplen;
-       u4    heapmaxsize;
-       u4    heapstartsize;
 
        if (argc < 2)
                usage();
@@ -214,9 +206,6 @@ int main(int argc, char **argv)
        opt_verbose = false;
        opt_directory = NULL;
 
-       heapmaxsize = HEAP_MAXSIZE;
-       heapstartsize = HEAP_STARTSIZE;
-
 
        /* parse the options ******************************************************/