Browse Source

backport "4826 Fixed race condition that was causing unit tests to fail" to 3.1

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@5059 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 16 years ago
parent
commit
c543ebd41f
  1. 9
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Process.cs

9
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Process.cs

@ -79,14 +79,7 @@ namespace Debugger @@ -79,14 +79,7 @@ namespace Debugger
}
}
static public Process CreateProcess(NDebugger debugger, string filename, string workingDirectory, string arguments)
{
return debugger.MTA2STA.Call<Process>(delegate{
return StartInternal(debugger, filename, workingDirectory, arguments);
});
}
static unsafe Process StartInternal(NDebugger debugger, string filename, string workingDirectory, string arguments)
static unsafe public Process CreateProcess(NDebugger debugger, string filename, string workingDirectory, string arguments)
{
debugger.TraceMessage("Executing " + filename);

Loading…
Cancel
Save