Implemented availableProcessors() for darwin.
[cacao.git] / main.h
diff --git a/main.h b/main.h
index 67884f7ae2b01f6157aa333e5bb8c13888416871..35fc370bd70f8dbaa9183982f16aa3e7f99aeff9 100644 (file)
--- a/main.h
+++ b/main.h
@@ -1,4 +1,4 @@
-/* main.c - main header, contains global variables
+/* main.h - main header, contains global variables
 
    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
    Institut f. Computersprachen, TU Wien
@@ -27,7 +27,7 @@
 
    Authors: Christian Thalinger
 
-   $Id: main.h 1149 2004-06-06 13:28:36Z twisti $
+   $Id: main.h 1359 2004-07-28 10:48:36Z twisti $
 
 */
 
 
 #include "global.h"
 
-/* global variables */
-
-extern bool compileall;
-extern bool verbose;
-extern bool runverbose;
-extern bool verboseexception;
-extern bool collectverbose;
-
-extern bool loadverbose;         /* Print debug messages during loading */
-extern bool linkverbose;
-extern bool initverbose;         /* Log class initialization */ 
-
-extern bool opt_rt;
-extern bool opt_xta;
-extern bool opt_vta;
-
-extern bool opt_liberalutf;      /* Don't check overlong UTF-8 sequences */
-
-extern bool showmethods;
-extern bool showconstantpool;
-extern bool showutf;
-
-extern bool compileverbose;
-extern bool showstack;
-extern bool showdisassemble;
-extern bool showddatasegment;
-extern bool showintermediate;
-
-extern bool useinlining;
-extern bool inlinevirtuals;
-extern bool inlineexceptions;
-extern bool inlineparamopt;
-extern bool inlineoutsiders;
 
-extern bool checkbounds;
-extern bool checknull;
-extern bool opt_noieee;
-extern bool checksync;
-extern bool opt_loops;
-
-extern bool makeinitializations;
-
-extern bool getloadingtime;
-extern s8 loadingtime;
-
-extern bool getcompilingtime;
-extern s8 compilingtime;
-
-extern int has_ext_instr_set;
-
-extern bool opt_stat;
-
-extern bool opt_eager;
+/* global variables */
 
+extern char *classpath;
 extern char *mainstring;    /* class.method with main method */