comparison src/share/vm/gc_implementation/parNew/parOopClosures.hpp @ 1665:a93a9eda13f7

6962947: shared TaskQueue statistics Reviewed-by: tonyp, ysr
author jcoomes
date Fri, 16 Jul 2010 21:33:21 -0700
parents c18cbe5936b8
children f95d63e2154a
comparison
equal deleted inserted replaced
1657:1a1ce2076047 1665:a93a9eda13f7
1 /* 1 /*
2 * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
24 24
25 // Closures for ParNewGeneration 25 // Closures for ParNewGeneration
26 26
27 class ParScanThreadState; 27 class ParScanThreadState;
28 class ParNewGeneration; 28 class ParNewGeneration;
29 typedef OopTaskQueueSet ObjToScanQueueSet; 29 typedef Padded<OopTaskQueue> ObjToScanQueue;
30 typedef GenericTaskQueueSet<ObjToScanQueue> ObjToScanQueueSet;
30 class ParallelTaskTerminator; 31 class ParallelTaskTerminator;
31 32
32 class ParScanClosure: public OopsInGenClosure { 33 class ParScanClosure: public OopsInGenClosure {
33 protected: 34 protected:
34 ParScanThreadState* _par_scan_state; 35 ParScanThreadState* _par_scan_state;