Advertisement
Guest User

Untitled

a guest
Feb 17th, 2012
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. gdb test
  2. GNU gdb (GDB) 7.2
  3. Copyright (C) 2010 Free Software Foundation, Inc.
  4. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
  5. This is free software: you are free to change and redistribute it.
  6. There is NO WARRANTY, to the extent permitted by law. Type "show copying"
  7. and "show warranty" for details.
  8. This GDB was configured as "--host=i686-pc-linux-gnu --target=arm-none-linux-gnueabi".
  9. For bug reporting instructions, please see:
  10. <http://www.gnu.org/software/gdb/bugs/>...
  11. Reading symbols from /home/yuvraj/screenrecorder/test/test...done.
  12. (gdb) target remote 192.168.2.15:2345
  13. Remote debugging using 192.168.2.15:2345
  14. Reading symbols from /lib/ld-linux.so.3...(no debugging symbols found)...done.
  15. Loaded symbols for /lib/ld-linux.so.3
  16. 0x41000880 in ?? ()
  17. (gdb) b main
  18. Cannot access memory at address 0x0
  19. Breakpoint 1 at 0x86f4: file test.c, line 11.
  20. (gdb) s
  21. Cannot find bounds of current function
  22. (gdb) continue
  23. Continuing.
  24.  
  25. Breakpoint 1, main () at test.c:11
  26. 11 init(callback1);
  27. (gdb) n
  28. 0x00008610 in _dl_init_paths () from /lib/ld-linux.so.3
  29. (gdb) s
  30. Single stepping until exit from function _dl_init_paths,
  31. which has no line number information.
  32.  
  33. Program received signal SIGSEGV, Segmentation fault.
  34. 0xe7f001f0 in ?? ()
  35. (gdb) bt
  36. #0 0xe7f001f0 in ?? ()
  37. #1 0x00010988 in _dl_start_profile () from /lib/ld-linux.so.3
  38. #2 0x4104544c in ?? ()
  39. #3 0x4104544c in ?? ()
  40. Backtrace stopped: previous frame identical to this frame (corrupt stack?)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement