hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/BufferBlob.java
changeset 38133 78b95467b9f1
parent 35217 ce4b5303a813
equal deleted inserted replaced
38132:ba888a4f352a 38133:78b95467b9f1
     1 /*
     1 /*
     2  * Copyright (c) 2000, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2000, 2016, 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.
    27 import java.util.*;
    27 import java.util.*;
    28 import sun.jvm.hotspot.debugger.*;
    28 import sun.jvm.hotspot.debugger.*;
    29 import sun.jvm.hotspot.runtime.*;
    29 import sun.jvm.hotspot.runtime.*;
    30 import sun.jvm.hotspot.types.*;
    30 import sun.jvm.hotspot.types.*;
    31 
    31 
    32 public class BufferBlob extends CodeBlob {
    32 public class BufferBlob extends RuntimeBlob {
    33   static {
    33   static {
    34     VM.registerVMInitializedObserver(new Observer() {
    34     VM.registerVMInitializedObserver(new Observer() {
    35         public void update(Observable o, Object data) {
    35         public void update(Observable o, Object data) {
    36           initialize(VM.getVM().getTypeDataBase());
    36           initialize(VM.getVM().getTypeDataBase());
    37         }
    37         }