src/share/vm/gc/g1/concurrentG1RefineThread.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/gc/g1/concurrentG1RefineThread.hpp

src/share/vm/gc/g1/concurrentG1RefineThread.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2001, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 51,65 **** ConcurrentG1Refine* _cg1r; // The closure applied to completed log buffers. CardTableEntryClosure* _refine_closure; ! int _thread_threshold_step; // This thread activation threshold ! int _threshold; // This thread deactivation threshold ! int _deactivation_threshold; void wait_for_completed_buffers(); void set_active(bool x) { _active = x; } bool is_active(); --- 51,65 ---- ConcurrentG1Refine* _cg1r; // The closure applied to completed log buffers. CardTableEntryClosure* _refine_closure; ! size_t _thread_threshold_step; // This thread activation threshold ! size_t _threshold; // This thread deactivation threshold ! size_t _deactivation_threshold; void wait_for_completed_buffers(); void set_active(bool x) { _active = x; } bool is_active();
src/share/vm/gc/g1/concurrentG1RefineThread.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File