Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a program that's having some trouble during shutdown, raising exceptions that I can't trace back to their source. It appears to be timing-related and non-deterministic. This is occurring after all shared resources have been released, and since it's shutdown, memory leaks are not an issue, so that makes me wonder if there's any way to just tell the program to terminate immediately and silently after releasing the shared resources, instead of continuing with the shutdown sequence and giving an exception message box.

Does anyone know how to do that?

share|improve this question
What kind of program is? Console app? TApplication based? You are trying to debug /into/ the shutdown process? – Nick Hodges Jul 26 '09 at 16:53
TApplication based, and yes I am, and it's not working. It seems to be timing-related, plus the debugger's more or less useless in this app. See qc.embarcadero.com/wc/qcmain.aspx?d=76039 for the reason. – Mason Wheeler Jul 26 '09 at 22:15

5 Answers

up vote 9 down vote accepted

After looking at the Delphi Run Time Library source code, and at the Microsoft documentation; I can corroborate Mason and Paul-Jan comments.

The hierarchy of shutdown is as follows

  Application.Terminate()
    performs some unidentified housekeeping of application
    calls Halt()

  Halt()
    calls ExitProc if set
    alerts the user in case of runtime error
    get rid of PackageLoad call contexts that might be pending
    finalize all units
    clear all exception handlers
    call ExitprocessProc if set
    and finally, call ExitProcess() from 'kernel32.dll'

  ExitProcess() 
    unloads all DLLs
    uses TerminateProcess() to kill the process
share|improve this answer

ExitProcess(0) ?

share|improve this answer

Halt(0) used to be the good old fashioned way of telling the program to end with immediate effect. There's probably a more Delphi-friendly way of doing that now, but I'm 95% sure halt(0) still works. :-)

share|improve this answer
It definitely works, but it will still do a nice and clean processing of all finilization parts and exitprocs. If one of those triggers Mason's issue, he is still in trouble. – Paul-Jan Jul 26 '09 at 17:09

In case HeartWare's suggestion of using ExitProcess() fails, it might be you are using some DLL's that do not respond well to the DLL_PROCESS_DETACH. In that case, try using a TerminateProcess( getCurrentProcess, 0 );

Once you resort to such measures, one might wonder if the "cleanly" part of the topic title still holds up to scrutiny.

share|improve this answer
1  
Oh, he could just wash his hands after doing that - keeps it clean! – Arafangion Oct 18 '10 at 23:37

The last time I had to hunt a problem like this was the shutdown was a causing an event (resize? It's been a while.) to fire on the dying window causing an attempt to redraw something that needed stuff that had already been disposed of.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.