hotspot/src/os/windows/vm/os_windows.cpp
changeset 31352 a6ab7217b5cc
parent 31026 b87ccf34b54c
child 31357 0cef600ba9b7
--- a/hotspot/src/os/windows/vm/os_windows.cpp	Mon Jun 15 14:33:51 2015 -0700
+++ b/hotspot/src/os/windows/vm/os_windows.cpp	Tue Jun 16 11:58:25 2015 +0200
@@ -1369,11 +1369,12 @@
 }
 
 bool os::dll_address_to_function_name(address addr, char *buf,
-                                      int buflen, int *offset) {
+                                      int buflen, int *offset,
+                                      bool demangle) {
   // buf is not optional, but offset is optional
   assert(buf != NULL, "sanity check");
 
-  if (Decoder::decode(addr, buf, buflen, offset)) {
+  if (Decoder::decode(addr, buf, buflen, offset, demangle)) {
     return true;
   }
   if (offset != NULL)  *offset  = -1;