I have a simple C# Mono 2.10 application running on CentOS 5.5 that calls
Process.Start("/path/to/myapp/myapp.exe","-someArgs");
I am able to get a process ID back and running with
mono --trace=N:System.Diagnostics
Shows me a stack that seems to indicate that Process.Start returned true:
LEAVE: System.Diagnostics.Process:Start_noshell (System.Diagnostics.ProcessStartInfo,System.Diagnostics.Process)TRUE:1
LEAVE: System.Diagnostics.Process:Start_common (System.Diagnostics.ProcessStartInfo,System.Diagnostics.Process)TRUE:1
LEAVE: System.Diagnostics.Process:Start ()TRUE:1
LEAVE: (wrapper remoting-invoke-with-check) System.Diagnostics.Process:Start ()TRUE:1
Which I assume means the process was spawned without an exception like FileNotFound etc..
However, the process seems to exit immediately and the exit code I get is 255. I assume this is a Linux exit code with some obvious meaning but I can't find anything of use on the tubes.
When launching the exact same application directly via
mono /path/to/myapp/myapp.exe -someArgs
The application launches correctly without any exception and works as expected.
Any clue what I am screwing up?