Mirror of the gdb mailing list
 help / color / mirror / Atom feed
* Does gdb can handle longjmp in i386 and amd64 now?
@ 2009-09-02 14:22 Hui Zhu
  2009-09-02 15:12 ` Tom Tromey
  0 siblings, 1 reply; 5+ messages in thread
From: Hui Zhu @ 2009-09-02 14:22 UTC (permalink / raw)
  To: gdb

Hi guys,

I try the following code with gdb in i386 and amd64:
#include   <setjmp.h>
#include   <stdio.h>
jmp_buf j;

void
raise_exception (void)
{
	//printf ("exception   raised\n");
	longjmp (j, 1);		/*   jump   to   exception   handler   */
	printf ("this   line   should   never   appear\n");
}

int
main (void)
{
	if (setjmp (j) == 0)
	{
		printf ("''setjmp''   is   initializing   ''j''\n");
		raise_exception ();
		printf ("this   line   should   never   appear\n");
	}
	else
	{
		printf ("''setjmp''   was   just   jumped   into\n");
		/*   this   code   is   the   exception   handler   */
	}

	return 0;
}


In i386, what I got is:

(gdb) start
Temporary breakpoint 1 at 0x80483ff: file 1.c, line 16.
Starting program: /home/teawater/gdb/a.out

Temporary breakpoint 1, main () at 1.c:16
16		if (setjmp (j) == 0)
(gdb) s
18			printf ("''setjmp''   is   initializing   ''j''\n");
(gdb) s
''setjmp''   is   initializing   ''j''
19			raise_exception ();
(gdb)
raise_exception () at 1.c:9
9		longjmp (j, 1);		/*   jump   to   exception   handler   */
(gdb)
0xb7ea3e61 in siglongjmp () from /lib/tls/i686/cmov/libc.so.6
(gdb) s
Single stepping until exit from function siglongjmp,
which has no line number information.
''setjmp''   was   just   jumped   into

Program exited normally.



In amd64, what I got is:
(gdb) start
Temporary breakpoint 1 at 0x4005c3: file 1.c, line 16.
Starting program: /home/teawater/gdb/a.out

Temporary breakpoint 1, main () at 1.c:16
warning: Source file is more recent than executable.
16		if (setjmp (j) == 0)
(gdb) s
18			printf ("''setjmp''   is   initializing   ''j''\n");
(gdb) s
''setjmp''   is   initializing   ''j''
19			raise_exception ();
(gdb)
raise_exception () at 1.c:9
9		longjmp (j, 1);		/*   jump   to   exception   handler   */
(gdb)
''setjmp''   was   just   jumped   into

Program exited normally.


Are this right?

Thanks,
Hui


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-09-03  1:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-02 14:22 Does gdb can handle longjmp in i386 and amd64 now? Hui Zhu
2009-09-02 15:12 ` Tom Tromey
2009-09-02 15:17   ` Mark Kettenis
2009-09-02 15:22     ` Tom Tromey
2009-09-03  1:44       ` Hui Zhu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox