1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-03 14:25:37 +02:00

dstore fix for 163197. the fix is a miner fix so in order to test it, the dstore_miners.jar needs to be updated.

This commit is contained in:
David McKnight 2006-11-08 17:57:13 +00:00
parent e7e6ce5379
commit 3ba2e914bf

View file

@ -136,7 +136,7 @@ public class CommandMinerThread extends MinerThread
{
_cwdStr = System.getProperty("user.home");
}
_status.setAttribute(DE.A_SOURCE, _cwdStr);
String theShell = null;
if (!_isWindows)
@ -376,35 +376,6 @@ public class CommandMinerThread extends MinerThread
_stdErrorHandler = new OutputHandler(_stdError, null, _isWindows || _isTTY, true, _isShell, this);
_stdErrorHandler.setWaitTime(10);
_stdErrorHandler.start();
if (_isOS400)
{
/*
//DKM - this isn't working properly from merge environments
// so I'm keeping these exports for now
try
{
_stdOutput.write("export QIBM_JAVA_STDIO_CONVERT=Y");
_stdOutput.write("export QIBM_USE_DESCRIPTOR_STDIO=I");
_stdOutput.write("\r");
_stdOutput.flush();
}
catch (IOException e)
{
}
sendInput("export PASE_STDIO_ISATTY=N");
sendInput("export QPTY_ISATTY=Y");
sendInput("export STDIO_ISATTY=Y");
sendInput("export TERMINAL_TYPE=REMOTE");
sendInput("export QIBM_PASE_DESCRIPTOR_STDIO=T");
sendInput("export QIBM_DESCRIPTOR_STDIN=CRLN=Y");
*/
}
getCurrentProccesses();
queryCWD();