Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
499 views

Switching stacks in C++

I have some old code written in C for 16-bit using Borland C++ that switches between multiple stacks, using longjmps. It creates a new stack by doing a malloc, and then setting the SS and SP ...
1
vote
1answer
201 views

Switching between multiple stacks in gdb 6.3

There are two stacks in the program: one is created by OS and the second is created by program itself to run some code with it. When the program crashes in the second stack, I want to switch to the ...