Tagged Questions
In C and C++, longjmp is a non-local jumping function that can jump across functions.
11
votes
1answer
118 views
Ocaml internals: Exceptions
I'm curious to know how exceptions are dealt with in Ocaml runtime to make them so lightweight. Do they use setjmp/longjmp or do they return a special value in each function, and propagate it?
It ...
11
votes
2answers
259 views
If I jump out of a catch-block with “goto”, am I guaranteed that the exception-object will be free'ed?
I have such code as follows
try {
doSomething();
} catch(InterruptException) {
goto rewind_code;
}
if(0) {
rewind_code:
longjmp(savepoint, 1);
}
My question is, is the exception object that ...
9
votes
2answers
264 views
longjmp and RAII
So I have a library (not written by me) which unfortunately uses abort() to deal with certain errors. At the application level, these errors are recoverable so I would like to handle them instead of ...
8
votes
3answers
3k views
C++: Safe to use longjmp and setjmp?
Is it safe to use longjmp and setjmp in C++ on linux/gcc with regards to the following?
Exception handling (I'm not implementing exception handling using longjmp/setjmp. I want to know what side ...
6
votes
2answers
158 views
What sense do these clobbered variable warnings make?
I have a function like this:
#include <setjmp.h>
jmp_buf buf;
void func2(int g);
extern int some_global;
void func(int x)
{
if (setjmp(buf))
return;
if (some_global)
x ...
6
votes
5answers
354 views
How to (computed) goto and longjmp in C++?
I don't usually code C++, but a strange comp sci friend of mine got sick of looking at my wonderful FORTRAN programs and challenged me to rewrite one of them in C++, since he likes my C++ codes ...
5
votes
3answers
286 views
setjmp and omit frame pointer
I've been trying to track down an intermittent crashing bug in my code (which uses setjmp), and narrowed it down to: shows up when compiling with /O2, goes away with /O2 /Oy-, i.e. only shows up with ...
5
votes
3answers
524 views
Multitasking using setjmp, longjmp
is there a way to implement multitasking using setjmp and longjmp functions
4
votes
2answers
397 views
Can I undo or remove an atexit command?
If I place atexit( fn ); on the exit stack, it will get executed when the program exits: returns from main() or via exit().
Can I remove it from the stack?
Why do I want to do this, you ask?
I was ...
3
votes
4answers
102 views
Longjmp out of signal handler?
From the question:
Is it good programming practice to use setjmp and longjmp in C?
Two of the comments left said:
"You can't throw an exception in a signal handler, but you can do a
longjmp ...
3
votes
2answers
223 views
In C: sending func pointers, calling the func with it, playing with EIP, jmp_buf and longjmp
I need to make sure i understand some basic stuff first:
how do i pass function A as a parameter to function B?
how do i call function A from inside B ?
Now for the big whammy:
I'm trying to do ...
3
votes
7answers
1k views
longjmp() from signal handler
I'm using the following code to try to read an input from user and timeout and exit if more than 5 seconds pass. This is accomplished through a combination of setjmp/longjmp and the SIGALRM signal.
...
3
votes
3answers
586 views
pthreads, setjmp, longjmp. How can you tell when a function is finished running?
I am writing a user space thread library. I have a struct that manages each thread. My threads are very simple, they take a function ptr and its arguments, and just run that function one time.
Each ...
2
votes
3answers
112 views
Use of setjmp and longjmp in C when linking to C++ libraries
I would like to use setjmp and longjmp in a C program that links to a library that is implemented in C++ (but has a C API).
The C++ code does do dynamic memory allocation and pointers get passed ...
2
votes
1answer
217 views
setjmp and longjmp - understanding with examples
I know the definition of setjmp and longjmp. setjmp stores the environment in stack context and the other one restores.
But i think there is somewhere some lack of understanding in my part. Can ...
2
votes
4answers
204 views
How to insulate a job/thread from crashes
I'm working on a library where I'm farming various tasks out to some third-party libraries that do some relatively sketchy or dangerous platform-specific work. (In specific, I'm writing a ...
1
vote
1answer
29 views
use of Sys::SigAction::timeout_call unsafe?
I've just read Leon Timmermans' article What you should know about signal based timeouts and I was wondering how it/if it applies to the use of Sys::SigAction::timeout_call().
1) First of all, it ...
1
vote
1answer
108 views
Why isn't setjmp saving the stack?
Why isn't setjmp saving the stack?
Consider the following code:
#include <iostream>
jmp_buf Buf;
jmp_buf Buf2;
void MyFunction()
{
for(int i = 0; i < 5; i++)
{
std::cout ...
1
vote
1answer
238 views
Exploiting a buffer overflow in a jmp_buf struct
I need help to exploit a buffer overflow on a jmp_buf structure.
I have the following values on the stack (seen by gdb):
0xbffffc40: 0xb7fd8ff4 0x080485a0 0x080483f0 0xbffffcf8
...
1
vote
2answers
190 views
Segfaulting when using setjmp longjmp
I have this school project and it is about using setjmp and longjmp to do imprecise calculations. The program starts a timer that will signal a signal handler.
Before the timer expires, there is some ...
1
vote
1answer
149 views
stating jmp_buf as pointer
I'm tring to define jmp_buf as pointer and using it in nested longjmp(s).as follow:
...
jmp_buf *bfj;
...
and then writing if else:
if( setjmp(*bfj) == 0){
DS[SP-2].int_val=(int)bfj;;
//to store ...
1
vote
5answers
258 views
question with longjmp
I want to use longjmp to simulate goto instruction.I have an array DS containing elements of struct types (int , float, bool ,char). I want to jump to the place labled "lablex" where x is ...
1
vote
1answer
280 views
Implementing preemptive microthreads using signal handlers and setjmp/longjmp
I want to implement POSIX compliant microthreads in Linux environment. Basic idea is as follows:
Using technique described here, assign new stack space for each fiber.
Using setitimer, create timer ...
1
vote
2answers
868 views
What does each entry in the Jmp_buf structure hold?
I am running ubuntu 9.10 (karmic koala), and I took a look at the jmp_buf structure which is simply an array of 12 ints. When I use setjmp, and pass in a jmp_buf structure -- 4 out of 12 entries are ...
0
votes
3answers
65 views
auto variable and register variable — optimized the same?
I am reading APUE, and when I came to longjmp , the question came. Before optimization, both the auto variable and register variable store in memory, after optimization, they store in register, the ...
0
votes
1answer
54 views
GDB crashing in Eclipse on longjmp
I am using c in eclipse to write a program. I need to use GDB to debug it step by step. However on a longjmp command (when i try to save the context of a stack) GDB crashes inside eclipse (because ...
0
votes
0answers
77 views
How many system resources required continuations? [closed]
especially for scheme/smalltalk languages and setjmp/longjmp in C.
0
votes
4answers
1k views
Warning “might be clobbered” on C++ object with setjmp
#include <setjmp.h>
#include <vector>
int main(int argc, char**) {
std::vector<int> foo(argc);
jmp_buf env;
if (setjmp(env)) return 1;
}
Compiling the above code with GCC ...