mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 02:54:35 +02:00
7189254: Change makefiles for more flexibility to override defaults
Change makefiles so that targets and parameters can be overridden by alternate makefiles. Reviewed-by: dholmes, coleenp
This commit is contained in:
parent
9e9db7f831
commit
c5eaaaa070
56 changed files with 1068 additions and 357 deletions
|
@ -56,7 +56,9 @@ class JvmtiEnvBase : public CHeapObj<mtInternal> {
|
|||
|
||||
private:
|
||||
|
||||
#if INCLUDE_JVMTI
|
||||
static JvmtiEnvBase* _head_environment; // head of environment list
|
||||
#endif // INCLUDE_JVMTI
|
||||
|
||||
static bool _globally_initialized;
|
||||
static jvmtiPhase _phase;
|
||||
|
@ -129,7 +131,10 @@ class JvmtiEnvBase : public CHeapObj<mtInternal> {
|
|||
friend class JvmtiEnvIterator;
|
||||
JvmtiEnv* next_environment() { return (JvmtiEnv*)_next; }
|
||||
void set_next_environment(JvmtiEnvBase* env) { _next = env; }
|
||||
static JvmtiEnv* head_environment() { return (JvmtiEnv*)_head_environment; }
|
||||
static JvmtiEnv* head_environment() {
|
||||
JVMTI_ONLY(return (JvmtiEnv*)_head_environment);
|
||||
NOT_JVMTI(return NULL);
|
||||
}
|
||||
|
||||
public:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue