Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
5answers
3k views

Why destructor is not called on exception?

I expected A::~A() to be called in this program, but it isn't: #include <iostream> struct A { ~A() { std::cout << "~A()" << std::endl; } }; void f() { A a; throw "spam"; } ...
9
votes
4answers
236 views

Scope unwinding in PHP class constructors

I'm learning PHP classes and exceptions, and, coming from a C++ background, the following strikes me as odd: When the constructor of a derived class throws an exception, it appears that the ...
7
votes
6answers
248 views

How is destroying local variables when a block is exited normally called in C++?

C++ automagically calls destructors of all local variables in the block in reverse order regardless of whether the block is exited normally (control falls through) or an exception is thrown. Looks ...
6
votes
4answers
556 views

Java and C++ on Stack Unwinding issue

As far as I know, in case of an uncaught exception, C++ destroys the local variables immediately, Java releases the references and leaves the rest for the garbage collector. Is this right? What ...
4
votes
1answer
252 views

Stack unwinding in C++ when using Lua

I recently stumbled into this this C++/Lua error int function_for_lua( lua_State* L ) { std::string s("Trouble coming!"); /* ... */ return luaL_error(L,"something went wrong"); } The error ...
3
votes
1answer
107 views

Ruby 1.8.6: how to unwind ('multi-level return') the stack without catch/try/raise?

Ruby 1.8.6 I would like to be able to unwind the stack to an arbitrary level in a situation where catch/try is not available (i.e., the code to which I'm unwinding is out of my control). For ...
3
votes
3answers
211 views

How to Detect Stack Unwinding in a Destructor

I have a simple C++ object that I create at the start of function F() to ensure two matched functions (OpDo, OpUndo) are called at the start and return of the F(), by using the object's constructor ...
3
votes
1answer
138 views

How to react to stack unwinding when destructors are not supported by a language?

Suppose you have created an instance of a Window class. The window is shown to the user. Then, an exception is thrown, and reference to the instance is lost, but the window is still seen by the user ...
3
votes
3answers
924 views

Stack unwinding on HP-UX and Linux

I need to get the stack information of my C application in certain points. I've read the documentation and searched the Net but still cannot figure out how I can do it. Can you point to a simple ...
2
votes
4answers
143 views

Why aren't destructors called when exception isn't caught within main?

I have the following code: #include <iostream> #include <vector> #include <tr1/memory> struct FooError {}; struct Foo { ~Foo() { std::cerr << "~Foo() executed" << ...
2
votes
1answer
126 views

C++ throwing an exception from a destructor

This isn't a question on whether it's safe to throw an exception from a destructor. http://www.parashift.com/c++-faq-lite/exceptions.html#faq-17.9 states: "During stack unwinding, all the local ...
2
votes
2answers
123 views

Is the stack unwound when you stop debugging?

Just curious if my destructors are being called. (Specifically for Visual Studio, when you hit the red stop button)
2
votes
4answers
422 views

.Net - what is an “unwind”?

While answering this question I noticed that I got the following dialog while atempting to move the "cursor" while an exception was being handled: Unable to set the next statement to this ...
2
votes
7answers
376 views

Exception handling

I heard people say exception handling is a bit expensive because of the stack unwinding. I don't get something, the stack unwinding happens whether I throw an exception and whether I use "return". So ...
2
votes
11answers
814 views

Program crashes when leaving a c++ function…What do you think it is?

I have a c++ code, I use MSC9 to compile it. It keeps crashing randomly. For example it crashes if it is called from Perl using `` but it does not crash when It is called from command line or from ...
1
vote
3answers
111 views

How can I detect whether an exception is active during destructor?

In C++, how can I detect in the body of my destructor whether the stack is being unwound due to an exception being thrown? Once detected, can I get a reference to the active exception? I ask because ...
1
vote
0answers
261 views

mips _Unwind_Backtrace on SIGSEGV

On a mips platform, I am trying to get Unwind work. Currently if I issue print_trace manually stack trace is correctly shown as below: backtrace_helper 0x4b6958 backtrace_helper 0x4b6ab4 ...
1
vote
4answers
123 views

Pointer validity after stack unwinding

In C++ does a pointer remains valid after stack unwinding or not ? Thanks for consideration. Regards Ehsan
1
vote
3answers
129 views

throwing a boost::shared_ptr< customException>

is there any pitfall of the following; if (someCondition) throw boost::shared_ptr<SomeException>( new SomeException( "foo!" ) ); ... catch( const ...
1
vote
3answers
148 views

Getting value of stack pointer while stack unwinding with dwarf2

In DWARF2 debugging format, stack unwinding is supported with the help of CFI(Call Frame Information) present in .debug_frame section. This is precisely a table that keeps a rule for every register to ...
1
vote
1answer
145 views

How do you build libunwind on i386 FreeBSD?

libunwind is available as a package (pkg_add -r libunwind) on FreeBSD 8.1 amd64. It is not available that way on FreeBSD 8.1 i386. When I download from http://www.nongnu.org/libunwind/ I cannot ...
0
votes
3answers
238 views

RAII and Stack unwinding

TIL that my notions of the 'inter-twining' (for the lack of a better word) of RAII & stack-unwinding are/were quite(if not completely) wrong. My understanding was that using RAII, guarded against ...
0
votes
1answer
101 views

stack unwinding in dwarf2

I don't understand that how the stack unwinding in dwarf2 ensures reliable recovery of arguments in some very basic ABI(Application Binary Interface) scenarios. Consider a ABI, which says that the ...
0
votes
3answers
158 views

Pointer question

Okay I go through 2 layers of functions fun1 calls func2 calls func3 . I pass a pointer all the way down using basically int *ptr, at the lowest "level" of the call stack I also have another function ...