comparison src/share/vm/utilities/workgroup.hpp @ 2491:0654ee04b214

Merge with OpenJDK.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Fri, 22 Apr 2011 15:30:53 +0200
parents 92da084fefc9
children f08d439fab8c
comparison
equal deleted inserted replaced
2490:29246b1d2d3c 2491:0654ee04b214
1 /* 1 /*
2 * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2002, 2011, 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.
33 # include "thread_solaris.inline.hpp" 33 # include "thread_solaris.inline.hpp"
34 #endif 34 #endif
35 #ifdef TARGET_OS_FAMILY_windows 35 #ifdef TARGET_OS_FAMILY_windows
36 # include "thread_windows.inline.hpp" 36 # include "thread_windows.inline.hpp"
37 #endif 37 #endif
38
39 // Task class hierarchy:
40 // AbstractGangTask
41 // AbstractGangTaskWOopQueues
42 //
43 // Gang/Group class hierarchy:
44 // AbstractWorkGang
45 // WorkGang
46 // FlexibleWorkGang
47 // YieldingFlexibleWorkGang (defined in another file)
48 //
49 // Worker class hierarchy:
50 // GangWorker (subclass of WorkerThread)
51 // YieldingFlexibleGangWorker (defined in another file)
38 52
39 // Forward declarations of classes defined here 53 // Forward declarations of classes defined here
40 54
41 class WorkGang; 55 class WorkGang;
42 class GangWorker; 56 class GangWorker;