The normal invocation of the JVM is very simple: just pass the main() parameters into the JVM entry point, then call exit(2) with
the return code from it. That's all there is to it from the top level.
Copyright 2005 The Apache Software Foundation or its licensors, as applicable.
Licensed under the Apache License, Version 2.0 ("the License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
Definition in file main.c.
#include "arch.h"
#include <stdlib.h>
#include "jvmcfg.h"
#include "classfile.h"
#include "jvm.h"
Go to the source code of this file.
Functions | |
int | main (int argc, char **argv, char **envp) |
Example of invoking the main JVM entry point. | |
static void | main_c_dummy (void) |
Variables | |
static char * | main_c_copyright = "\0" "$URL: https://svn.apache.org/path/name/main.c $ $Id: main.c 0 09/28/2005 dlydick $" " " "Copyright 2005 The Apache Software Foundation or its licensors, as applicable." |
|
|
|
Example of invoking the main JVM entry point. The arguments to jvm() are identical in format and presentation to those used to enter a 'C' main program.
Definition at line 73 of file main.c. References jvm(). |
|
|