0
votes
3answers
57 views

Generate exception from a C library function that forces quit

I am trying to wrap a C library function using C++. The function attempts to initialize a device. On error, it forces the execution of the program to terminate (probably with an exit(1)). I would like ...
1
vote
2answers
803 views

simple IPython example raises exception on sys.exit()

I'm doing some very simple PySide (and PyQt) tutorials in IPython. One tutorial just creates a window with some sliders to demonstrate slots and signals. When I close the window of the running demo ...
2
votes
2answers
125 views

is it possible to use import after sys.exit(1)?

I have a GetVars() function (not supposed to be changed), it throws sys.exit(1) in some cases. I want to do some cleanup for this case: try: common_func.GetVars() except SystemExit: cmdline = ...
1
vote
2answers
317 views

Using an Exception to Exit PHP Application

My app has a registered shutdown function and it seems there's some issues with that and my method of using an exception with a try/catch to exit the application (instead of using the exit() method ...
0
votes
2answers
152 views

Delphi: AV after exit Delphi 6

Not too long ago my Delphi 6 prof has worked well (1-2 months?). But now it is generate an AV on exit (EListError in rtl60, it is uses [0] index). I don't know where I search the source of the ...
7
votes
1answer
236 views

How to prevent embeded python to exit() my process

I'm having trouble while running embedded python. It turns out that I can't capture that SystemExit exception raised by sys.exit(); This is what I have so far: $ cat call.c #include ...
1
vote
2answers
2k views

Quit the program when catching error in C#?

With Python, I normally check the return value. And, if there's an error, I use sys.exit() together with error message. What's equivalent action in C#? Q1 : How to print out an error message to ...
20
votes
7answers
3k views

Under what circumstances are C++ destructors not going to be called?

I know that my destructors are called on normal unwind of stack and when exceptions are thrown, but not when exit() is called. Are there any other cases where my destructors are not going to get ...
3
votes
2answers
675 views

How to catch exit() in embedded C++ module from python code?

I am embedding a c++ library (binding done with SIP) in my python application. Under certain circonstances (error cases), this library uses exit(), which causes my entire application to exit. Is ...
2
votes
4answers
3k views

exit failed script run (python)

I have seen several questions about exiting a script after a task is successfully completed, but is there a way to do the same for a script which has failed? I am writing a testing script which just ...
1
vote
4answers
979 views

Catching exit(1);

I have a MFC SDI application which during startup loads a DLL. I am only able to view the source code and use the DLL but not changing & recompiling it. The situation now is that, whenever the ...
6
votes
2answers
2k views

Is there a way to prevent a SystemExit exception raised from sys.exit() from being caught?

The docs say that calling sys.exit() raises a SystemExit exception which can be caught in outer levels. I have a situation in which I want to definitively and unquestionably exit from inside a test ...