Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- gdb test
- GNU gdb (GDB) 7.2
- Copyright (C) 2010 Free Software Foundation, Inc.
- License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
- This is free software: you are free to change and redistribute it.
- There is NO WARRANTY, to the extent permitted by law. Type "show copying"
- and "show warranty" for details.
- This GDB was configured as "--host=i686-pc-linux-gnu --target=arm-none-linux-gnueabi".
- For bug reporting instructions, please see:
- <http://www.gnu.org/software/gdb/bugs/>...
- Reading symbols from /home/yuvraj/screenrecorder/test/test...done.
- (gdb) target remote 192.168.2.15:2345
- Remote debugging using 192.168.2.15:2345
- Reading symbols from /lib/ld-linux.so.3...(no debugging symbols found)...done.
- Loaded symbols for /lib/ld-linux.so.3
- 0x41000880 in ?? ()
- (gdb) b main
- Cannot access memory at address 0x0
- Breakpoint 1 at 0x86f4: file test.c, line 11.
- (gdb) s
- Cannot find bounds of current function
- (gdb) continue
- Continuing.
- Breakpoint 1, main () at test.c:11
- 11 init(callback1);
- (gdb) n
- 0x00008610 in _dl_init_paths () from /lib/ld-linux.so.3
- (gdb) s
- Single stepping until exit from function _dl_init_paths,
- which has no line number information.
- Program received signal SIGSEGV, Segmentation fault.
- 0xe7f001f0 in ?? ()
- (gdb) bt
- #0 0xe7f001f0 in ?? ()
- #1 0x00010988 in _dl_start_profile () from /lib/ld-linux.so.3
- #2 0x4104544c in ?? ()
- #3 0x4104544c in ?? ()
- Backtrace stopped: previous frame identical to this frame (corrupt stack?)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement