-
Bug
-
Resolution: Fixed
-
P4
-
6
-
b62
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8030270 | 8u5 | Dmitriy Samersoff | P4 | Resolved | Fixed | b01 |
JDK-8029931 | 8 | Dmitriy Samersoff | P4 | Resolved | Fixed | b120 |
Via e-mail from Kris Mok:
Hi all,
There seem to be a typo in Serviceability Agent's JSDB launcher script, jsdbproc64.sh.
The class name "sun.jvm.hotspot.tools.soql.JSDB" is incorrectly written as "sun.jvm.hotspot.tools.JSDB" in this script.
This script also contains a few extra Carriage Return characters at the end of lines, which should be removed.
This is found in jdk7/jdk7/hotspot and hsx20/baseline, and in earlier releases as well.
The 32-bit counterpart, jsdbproc.sh doesn't have these problems, nor do the Windows versions, jsdbwindbg(64).bat.
The fix would be: (based on hsx20/baseline)
$ hg diff
diff -r f0f676c5a2c6 agent/make/jsdbproc64.sh
--- a/agent/make/jsdbproc64.sh Tue Mar 15 19:30:16 2011 -0700
+++ b/agent/make/jsdbproc64.sh Wed May 04 22:25:52 2011 +0800
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/sh
#
# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
@@ -24,7 +24,7 @@
#
#
-
-. `dirname $0`/saenv64.sh
-
-$SA_JAVA_CMD sun.jvm.hotspot.tools.JSDB $*
+
+. `dirname $0`/saenv64.sh
+
+$SA_JAVA_CMD sun.jvm.hotspot.tools.soql.JSDB $*
P.S. Are there any simple-to-follow guides on how one can make small contributions to this kind of code?
Regards,
Kris Mok
Hi all,
There seem to be a typo in Serviceability Agent's JSDB launcher script, jsdbproc64.sh.
The class name "sun.jvm.hotspot.tools.soql.JSDB" is incorrectly written as "sun.jvm.hotspot.tools.JSDB" in this script.
This script also contains a few extra Carriage Return characters at the end of lines, which should be removed.
This is found in jdk7/jdk7/hotspot and hsx20/baseline, and in earlier releases as well.
The 32-bit counterpart, jsdbproc.sh doesn't have these problems, nor do the Windows versions, jsdbwindbg(64).bat.
The fix would be: (based on hsx20/baseline)
$ hg diff
diff -r f0f676c5a2c6 agent/make/jsdbproc64.sh
--- a/agent/make/jsdbproc64.sh Tue Mar 15 19:30:16 2011 -0700
+++ b/agent/make/jsdbproc64.sh Wed May 04 22:25:52 2011 +0800
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/sh
#
# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
@@ -24,7 +24,7 @@
#
#
-
-. `dirname $0`/saenv64.sh
-
-$SA_JAVA_CMD sun.jvm.hotspot.tools.JSDB $*
+
+. `dirname $0`/saenv64.sh
+
+$SA_JAVA_CMD sun.jvm.hotspot.tools.soql.JSDB $*
P.S. Are there any simple-to-follow guides on how one can make small contributions to this kind of code?
Regards,
Kris Mok
- backported by
-
JDK-8029931 jsdbproc64.sh has a typo in the package name
- Resolved
-
JDK-8030270 jsdbproc64.sh has a typo in the package name
- Resolved