From shade at redhat.com Tue Jan 23 11:34:25 2018 From: shade at redhat.com (Aleksey Shipilev) Date: Tue, 23 Jan 2018 12:34:25 +0100 Subject: JOL is hanging when running from module path In-Reply-To: <707bd607-367a-ed1e-2ec6-302252e80475@redhat.com> References: <707bd607-367a-ed1e-2ec6-302252e80475@redhat.com> Message-ID: On 11/13/2017 11:26 AM, Aleksey Shipilev wrote: > On 10/24/2017 06:35 AM, Zheka Kozlov wrote: >> Then I run the program with the following args: >> >> java -p >> java9.jar;C:\Users\john_kozlov\.m2\repository\org\openjdk\jol\jol-core\0.9\jol-core-0.9.jar >> -m java9/org.example.Example >> >> The program is hanging with no output. > > Not the case on Linux, unfortunately. Or maybe I have constructed the example incorrectly? Please > consider creating the automated MCVE next time to avoid this. > >> The cause of the problem is an empty classpath: ServiceabilityAgentSupport.java:279. Since the >> classpath is empty, the process is hanging infinitely (ServiceabilityAgentSupport.java:242). > > If the empty classpath is the problem, this should be the fix? > > $ hg diff > diff -r 03064c057dc9 jol-core/src/main/java/org/openjdk/jol/vm/sa/ServiceabilityAgentSupport.java > --- a/jol-core/src/main/java/org/openjdk/jol/vm/sa/ServiceabilityAgentSupport.java Fri Sep 22 > 17:29:25 2017 +0200 > +++ b/jol-core/src/main/java/org/openjdk/jol/vm/sa/ServiceabilityAgentSupport.java Mon Nov 13 > 11:25:52 2017 +0100 > @@ -290,8 +290,10 @@ > throw new IllegalStateException("Unhandled style: " + style); > } > > - args.add("-cp"); > - args.add(classPath); > + if (!classPath.isEmpty()) { > + args.add("-cp"); > + args.add(classPath); > + } > return args; > } > > Can you try it? Any luck? Thanks, -Aleksey