diff options
Diffstat (limited to 'runtime/runtime.cc')
| -rw-r--r-- | runtime/runtime.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/runtime.cc b/runtime/runtime.cc index 1aab933777..3b0ca9e28a 100644 --- a/runtime/runtime.cc +++ b/runtime/runtime.cc @@ -403,11 +403,11 @@ void Runtime::CallExitHook(jint status) { } } -void Runtime::SweepSystemWeaks(IsMarkedCallback* visitor, void* arg) { - GetInternTable()->SweepInternTableWeaks(visitor, arg); - GetMonitorList()->SweepMonitorList(visitor, arg); - GetJavaVM()->SweepJniWeakGlobals(visitor, arg); - GetHeap()->SweepAllocationRecords(visitor, arg); +void Runtime::SweepSystemWeaks(IsMarkedVisitor* visitor) { + GetInternTable()->SweepInternTableWeaks(visitor); + GetMonitorList()->SweepMonitorList(visitor); + GetJavaVM()->SweepJniWeakGlobals(visitor); + GetHeap()->SweepAllocationRecords(visitor); } bool Runtime::Create(const RuntimeOptions& options, bool ignore_unrecognized) { |