blob: c67f2bc92a46f8d8399200ac51e64b478d3c5c8d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
$FreeBSD: ports/java/jdk13/files/patch-scavenge.hpp,v 1.1 2004/11/27 05:44:12 glewis Exp $
--- ../../hotspot1.3.1/src/share/vm/memory/scavenge.hpp 11 Jul 2001 21:33:24 -0000 1.1.1.1
+++ ../../hotspot1.3.1/src/share/vm/memory/scavenge.hpp 22 Nov 2004 17:19:42 -0000
@@ -91,6 +91,9 @@
// fill the new generation large dummy objects
static void fill_newgen();
+ // Scavenge entry point called from VM operation
+ static void invoke_at_safepoint(int size_to_be_allocated, bool deferred, bool& notify_ref_lock);
+
private:
// Scavenge functions and java/lang/ref handling
static void scavenge_oop(oop* p);
@@ -121,9 +124,6 @@
static void compute_scavenge_functions();
- // Scavenge entry point called from VM operation
- static void invoke_at_safepoint(int size_to_be_allocated, bool deferred, bool& notify_ref_lock);
-
// Cheney scan
static void evacuate_followers();
|