Commit c7273283 by Tom Tromey Committed by Tom Tromey

PersistentByteMap.java: Fixed typo.

	* gnu/gcj/runtime/PersistentByteMap.java: Fixed typo.
	* prims.cc: Fixed comment.

From-SVN: r94592
parent ed425871
2005-02-02 Tom Tromey <tromey@redhat.com>
* gnu/gcj/runtime/PersistentByteMap.java: Fixed typo.
* prims.cc: Fixed comment.
2005-02-01 Tom Tromey <tromey@redhat.com> 2005-02-01 Tom Tromey <tromey@redhat.com>
* Makefile.in: Rebuilt. * Makefile.in: Rebuilt.
......
/* Copyright (C) 2004 Free Software Foundation /* Copyright (C) 2004, 2005 Free Software Foundation
This file is part of libgcj. This file is part of libgcj.
...@@ -11,7 +11,7 @@ details. */ ...@@ -11,7 +11,7 @@ details. */
/* A PersistentByteMap maps a byte array to another byte array. It /* A PersistentByteMap maps a byte array to another byte array. It
uses a file that does not need to be serialized but may be uses a file that does not need to be serialized but may be
memory-mapped and read in-place. So, even if there are many instances memory-mapped and read in-place. So, even if there are many instances
of gcj applications running, the can share PersistentByteMaps. of gcj applications running, they can share PersistentByteMaps.
The idea is to make searches as fast as possible: opening a The idea is to make searches as fast as possible: opening a
PersistentByteMap is cheap and search time doesn't grow with the PersistentByteMap is cheap and search time doesn't grow with the
......
...@@ -964,8 +964,7 @@ _Jv_CreateJavaVM (void* /*vm_args*/) ...@@ -964,8 +964,7 @@ _Jv_CreateJavaVM (void* /*vm_args*/)
// of VMClassLoader. // of VMClassLoader.
_Jv_InitClass (&java::lang::ClassLoader::class$); _Jv_InitClass (&java::lang::ClassLoader::class$);
// Once the bootstrap loader is in place, change it into a kind of // Set up the system class loader.
// system loader, by having it read the class path.
gnu::gcj::runtime::VMClassLoader::initialize(); gnu::gcj::runtime::VMClassLoader::initialize();
_Jv_RegisterBootstrapPackages(); _Jv_RegisterBootstrapPackages();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment