Will Environment.Exit(int) kill my application with treads running unmanaged code?

659 Views Asked by At

I have a windows service which runs unmanaged code (using DllImport) in different threads.

Sometimes, the unmanaged code 'hangs'. Think of while (true) ;. When that happens, I need to kill the entire process (which automatically starts another because it's a windows service).

Is Environment.Exit(int) sufficient? Or will I need e.g. Environment.FailFast(string)?

Edit: I am unable to 'test' this. The freezes happen randomly.

2

There are 2 best solutions below

0
On BEST ANSWER

From the official Microsoft documentation, Environment.Exit:

Terminates this process and returns an exit code to the operating system.

More usefully, the documentation goes on to state:

  • Exit always terminates an application
  • Exit terminates an application immediately, even if other threads are running

It sounds like Environment.Exit is perfectly sufficient for your needs.

0
On

Yes. Environment.Exit will kill all the threads running in the current process, including the main thread (and the process itself).

Environment.FailFast will log an event into the Application Log and then kill the process and all of the threads in the current process.