src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/linux/LinuxCDebugger.java
changeset 58913 e2dfab7beccb
parent 47216 71c04702a3d5
equal deleted inserted replaced
58912:44d60fc2dd8a 58913:e2dfab7beccb
     1 /*
     1 /*
     2  * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * Copyright (c) 2015, Red Hat Inc.
     3  * Copyright (c) 2015, Red Hat Inc.
     4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     5  *
     5  *
     6  * This code is free software; you can redistribute it and/or modify it
     6  * This code is free software; you can redistribute it and/or modify it
     7  * under the terms of the GNU General Public License version 2 only, as
     7  * under the terms of the GNU General Public License version 2 only, as
   131     // FIXME: after stabs parser
   131     // FIXME: after stabs parser
   132     return null;
   132     return null;
   133   }
   133   }
   134 
   134 
   135   public boolean canDemangle() {
   135   public boolean canDemangle() {
   136     return false;
   136     return true;
   137   }
   137   }
   138 
   138 
   139   public String demangle(String sym) {
   139   public String demangle(String sym) {
   140     throw new UnsupportedOperationException();
   140     return dbg.demangle(sym);
   141   }
   141   }
   142 }
   142 }