# HG changeset patch # User timkelly # Date 1265216206 21600 # Node ID 3419376b791a51a60940f2c9f71c32a8b14371c4 # Parent f3e6336d8edb53977bb5cd27325586ba694621b5 update to Carbide 2.5 EXE name diff -r f3e6336d8edb -r 3419376b791a core/carbide_releases/run.jstack.bat --- a/core/carbide_releases/run.jstack.bat Wed Feb 03 08:09:19 2010 -0600 +++ b/core/carbide_releases/run.jstack.bat Wed Feb 03 10:56:46 2010 -0600 @@ -1,6 +1,6 @@ echo off -rem This is a utility batch file to get stack information from the Carbide.c++.2.4.exe process. +rem This is a utility batch file to get stack information from the Carbide.c++.2.5.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.4.exe > %outfile% +rem echo Carbide.c++.2.5.exe > %outfile% echo echo Searching for Carbide.c++ process... -FOR /F "tokens=2" %%i IN ('tasklist /FI "IMAGENAME eq Carbide.c++.2.4.exe" +FOR /F "tokens=2" %%i IN ('tasklist /FI "IMAGENAME eq Carbide.c++.2.5.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.4.exe running? +if not exist %OUTFILE% echo ERROR: Results not written. Is Carbide.c++.2.5.exe running? :END