# HG changeset patch # User timkelly # Date 1261067904 21600 # Node ID 3edbbd22908ceb9be78efc7d28b06e12c48537cc # Parent 56780cf045d5630d3bd2f3c00ec430c9caf3cfbe update to 3.0 diff -r 56780cf045d5 -r 3edbbd22908c core/carbide_releases/run.jstack.bat --- a/core/carbide_releases/run.jstack.bat Wed Dec 16 15:48:53 2009 -0600 +++ b/core/carbide_releases/run.jstack.bat Thu Dec 17 10:38:24 2009 -0600 @@ -1,6 +1,6 @@ echo off -rem This is a utility batch file to get stack information from the Carbide.c++.2.2.exe process. +rem This is a utility batch file to get stack information from the Carbide.c++.3.0.exe process. rem In order to run it successfully, you will need to have a full JDK installed of version 1.6 or higher. rem See http://java.sun.com/javase/downloads/index.jsp for download information. rem If the Carbide process is found (and only one should be running) then stack information will be found in %OUTFILE%. @@ -18,18 +18,18 @@ del %OUTFILE% -rem echo Carbide.c++.2.2.exe > %outfile% +rem echo Carbide.c++.3.0.exe > %outfile% echo echo Searching for Carbide.c++ process... -FOR /F "tokens=2" %%i IN ('tasklist /FI "IMAGENAME eq Carbide.c++.2.2.exe" +FOR /F "tokens=2" %%i IN ('tasklist /FI "IMAGENAME eq Carbide.c++.3.0.exe" /NH') DO @%JSTACK% %%i > %OUTFILE% echo if exist %OUTFILE% echo Check for results in %OUTFILE% -if not exist %OUTFILE% echo ERROR: Results not written. Is Carbide.c++.2.2.exe running? +if not exist %OUTFILE% echo ERROR: Results not written. Is Carbide.c++.3.0.exe running? :END