Advertisement
Guest User

Untitled

a guest
Jul 12th, 2012
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. Program received signal SIGINT, Interrupt.
  2. 0x00007ffff6a3c4d2 in recv () from /lib/x86_64-linux-gnu/libc.so.6
  3. (gdb) bt
  4. #0 0x00007ffff6a3c4d2 in recv () from /lib/x86_64-linux-gnu/libc.so.6
  5. #1 0x00007ffff7bd811b in amqp_simple_wait_frame () from /usr/local/lib/librabbitmq.so
  6. #2 0x00007ffff79b8e13 in AmqpClient::Detail::ChannelImpl::GetNextFrameFromBroker (this=0x60a5c0, frame=..., timeout=...)
  7. at /home/matiu/stacktach2/dependencies/SimpleAmqpClient/src/ChannelImpl.cpp:346
  8. #3 0x00007ffff79b9205 in AmqpClient::Detail::ChannelImpl::GetNextFrameFromBrokerOnChannel (this=0x60a5c0, channel=2, frame_out=..., timeout=...)
  9. at /home/matiu/stacktach2/dependencies/SimpleAmqpClient/src/ChannelImpl.cpp:360
  10. #4 0x00007ffff79b4299 in AmqpClient::Detail::ChannelImpl::GetMethodOnChannel<boost::array<unsigned int, 1ul> > (this=0x60a5c0, channel=2, frame=..., expected_responses=..., timeout=...)
  11. at /home/matiu/stacktach2/dependencies/SimpleAmqpClient/src/SimpleAmqpClient/ChannelImpl.h:106
  12. #5 0x00007ffff79b2234 in AmqpClient::Channel::BasicConsumeMessage (this=0x60a5a0, consumer_tag=..., message=..., timeout=-1)
  13. at /home/matiu/stacktach2/dependencies/SimpleAmqpClient/src/Channel.cpp:477
  14. #6 0x0000000000405f98 in main ()
  15. (gdb) f 2
  16. #2 0x00007ffff79b8e13 in AmqpClient::Detail::ChannelImpl::GetNextFrameFromBroker (this=0x60a5c0, frame=..., timeout=...)
  17. at /home/matiu/stacktach2/dependencies/SimpleAmqpClient/src/ChannelImpl.cpp:346
  18. 346 CheckForError(amqp_simple_wait_frame(m_connection, &frame));
  19. Current language: auto
  20. The current source language is "auto; currently c++".
  21. (gdb) p frame
  22. $1 = (amqp_frame_t &) @0x7fffffffdf90: {frame_type = 192 '\300', channel = 65535, payload = {method = {id = 4294959104, decoded = 0x7fffffffdfd0}, properties = {class_id = 57344,
  23. body_size = 140737488347088, decoded = 0x7ffff79b6089, raw = {len = 140737488347136, bytes = 0x7fffffffdff0}}, body_fragment = {len = 140737488347136, bytes = 0x7fffffffdfd0},
  24. protocol_header = {transport_high = 0 '\000', transport_low = 224 '\340', protocol_version_major = 255 '\377', protocol_version_minor = 255 '\377'}}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement