In C and C++, longjmp is a non-local jumping function that can jump across functions.

learn more… | top users | synonyms

3
votes
1answer
68 views

How does Non - local Jumps in C defined in setjmp.h work?

The C Reference Manual, Appendix B describes two functions setjmp and longjmp for something called non-local jumps. Apart from the basic understanding that setjmp saves the state information and ...
0
votes
1answer
13 views

call to longjmp is causing programme to exit with code 0 on msvc 2010

I'm trying to use setjmp/longjmp for error handling, however, the call to longjmp is causing the programme to exit with code 0 when compiled using MSVC 2010, here is the full message: The program ...
3
votes
1answer
150 views

Are objects created before setjmp destructed?

In jpeglib, one has to use setjmp/longjmp to implement custom error handling. There are lots of resources where it is said that setjmp/longjmp do not play well with c++ (for example answers in this ...
2
votes
1answer
46 views

Explicit call to destructor before longjmp/croak

I'm writing a PERL XS interface to a C++ library. I need to call croak when the library throws an exception. Doing it directly in the exception handler misses the call to the caught exception's ...
0
votes
1answer
30 views

longjmp out of vectored exception handler

Certain kinds of events in 64-bit Windows programs e.g. division by zero, null pointer reference, stack overflow if you detect that with a guard page, are normally handled (in a program that finds it ...
1
vote
5answers
223 views

How is C++ try/catch different than C setjmp/longjmp? [closed]

I was aware of exception handling in C++ using the try and catch blocks. I wondered if this functionality was there in C. So, now I know that basic error handling in C is done by setjmp/longjmp. ...
5
votes
1answer
140 views

C++ and C library using longjmp

I'm working with Lua, which has a C API and its error raising functions use longjmps. When raising an error I first build a message describing what went wrong and then tell Lua to raise the error. For ...
1
vote
1answer
84 views

My exit(status) with setjmp un longjmp

Problem is - I have to implement my own exit(status) with setjmp and longjmp. Maybe someone could give some pointers?
1
vote
2answers
153 views

C macros with opening and closing tags?

I just started reading this article about exception handling in c with the use of setjmp( jmp_buf ) and longjmp( jmp_buf, int ). So I basically build the linked list that uses the local variables from ...
3
votes
1answer
171 views

Why does setjmp(3) not save all registers on AMD64?

I was browsing through the source of various setjmp and longjmp implementations and noticed that not all of the CPU registers are saved in the jmp_buf structure. After reviewing the AMD64 ABI, I ...
0
votes
3answers
116 views

Are there performance problems with non-local jumps?

I am using non-local jumps (setjmp, longjmp). I would like to know if it can be a problem for the performances. Does setjmp save all the stack, or just some pointers ? Thanks.
1
vote
2answers
287 views

How to do lua_pushstring and avoiding an out of memory setjmp exception

Sometimes, I want to use lua_pushstring in places after I allocated some resources which I would need to cleanup in case of failure. However, as the documentation seems to imply, lua_push* functions ...
1
vote
2answers
288 views

Why does setjmp traditionally save registers?

Just consider i386 as an example, but an analogous question applies to other archs. The traditional i386 jmp_buf saved by setjmp consists of 6 saved registers: ebx, esi, edi, ebp, esp, and eip. Of ...
2
votes
1answer
155 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 ...
17
votes
1answer
610 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 ...
0
votes
3answers
215 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
131 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 ...
11
votes
2answers
662 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
7answers
853 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 ...
6
votes
4answers
442 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 ...
12
votes
2answers
426 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 ...
3
votes
3answers
315 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
226 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 ...
4
votes
1answer
2k 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 ...
1
vote
1answer
523 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 ...
5
votes
3answers
450 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 ...
1
vote
2answers
371 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 ...
9
votes
2answers
383 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 ...
3
votes
4answers
478 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
253 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
446 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 ...
3
votes
2answers
275 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 ...
7
votes
4answers
1k views

Multitasking using setjmp, longjmp

is there a way to implement multitasking using setjmp and longjmp functions
4
votes
2answers
933 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 ...
2
votes
1answer
485 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 ...
0
votes
4answers
2k 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 ...
3
votes
2answers
2k 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 ...
6
votes
4answers
2k views

excellent setjmp/longjmp tutorials

Hi I'd like to read good tutorials on setjmp/longjmp in C. It'd be better if there're examples which are real rather than artificial. Thanks.
4
votes
7answers
2k 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
819 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 ...
11
votes
3answers
5k 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 ...
12
votes
5answers
4k views

What are some “good” ways to use longjmp/setjmp for C error handling?

My apologies if this has been address/asked before. I have to use C for one project and I am thinking of using longjmp/setjmp for error handling as I think it will be much easier to handle error in ...