Advertisement
Guest User

Untitled

a guest
Oct 2nd, 2012
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. (gdb) f 2
  2. #2 0x0000000100010584 in sendfile_cb (req=0x1000ab920) at test-fs.c:433
  3. 433 ASSERT(req->result == 65546);
  4. (gdb) p *req
  5. $1 = {
  6. data = 0x0,
  7. active_queue = {
  8. prev = 0x10010aee8,
  9. next = 0x10010aee8
  10. },
  11. type = UV_UDP_SEND,
  12. fs_type = UV_FS_SENDFILE,
  13. loop = 0x10010aec0,
  14. cb = 0x100010480 <sendfile_cb>,
  15. result = -1,
  16. ptr = 0x0,
  17. path = 0x0,
  18. errorno = UV_ENOTSOCK,
  19. new_path = 0x0,
  20. file = 9,
  21. flags = 8,
  22. mode = 0,
  23. buf = 0x0,
  24. len = 131072,
  25. off = 0,
  26. uid = 0,
  27. gid = 0,
  28. atime = 0,
  29. mtime = 0,
  30. work_req = {
  31. work = 0x10004bef0 <uv__fs_work>,
  32. done = 0x10004c3d0 <uv__fs_done>,
  33. loop = 0x10010aec0,
  34. wq = {
  35. prev = 0x7fff5fbfe918,
  36. next = 0x7fff5fbfe918
  37. }
  38. },
  39. statbuf = {
  40. st_dev = 0,
  41. st_mode = 0,
  42. st_nlink = 0,
  43. st_ino = 0,
  44. st_uid = 0,
  45. st_gid = 0,
  46. st_rdev = 0,
  47. st_atimespec = {
  48. tv_sec = 0,
  49. tv_nsec = 0
  50. },
  51. st_mtimespec = {
  52. tv_sec = 0,
  53. tv_nsec = 0
  54. },
  55. st_ctimespec = {
  56. tv_sec = 0,
  57. tv_nsec = 0
  58. },
  59. st_birthtimespec = {
  60. tv_sec = 0,
  61. tv_nsec = 0
  62. },
  63. st_size = 0,
  64. st_blocks = 0,
  65. st_blksize = 0,
  66. st_flags = 0,
  67. st_gen = 0,
  68. st_lspare = 0,
  69. st_qspare = {0, 0}
  70. }
  71. }
  72. (gdb)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement