I'm having a serious issue.
I have overloaded the terminate method in order to print the backtrace
I can't find out where it could be called, since the stacktrace is not really eloquent. I have checked in every line of my code, and I check everytime if a callback is not null before calling it. This has been 3 days of pulling my hair out.
It would be impossible to paste my whole code here, but I'm actually looking for ideas on how to get the exact line throwing the exception.
my_terminate caught unhandled exception. what(): call to empty boost::function
my_terminate backtrace returned 10 frames
[bt]: (0) ./MyApp(_Z12my_terminatev+0x111) [0x6eca66]
[bt]: (1) /usr/lib/libstdc++.so.6(+0xcb166) [0x7f5b50dd8166]
[bt]: (2) /usr/lib/libstdc++.so.6(+0xca059) [0x7f5b50dd7059]
[bt]: (3) /usr/lib/libstdc++.so.6(__gxx_personality_v0+0x261) [0x7f5b50dd7b01]
[bt]: (4) /lib/libgcc_s.so.1(+0x107f3) [0x7f5b508857f3]
[bt]: (5) /lib/libgcc_s.so.1(_Unwind_Resume+0x68) [0x7f5b508858b8]
[bt]: (6) ./MyApp(_ZN5boost4asio10io_serviceD1Ev+0x4c) [0x6f0f28]
[bt]: (7) ./MyApp(main+0x268) [0x6ecdc2]
[bt]: (8) /lib/libc.so.6(__libc_start_main+0xfd) [0x7f5b50532c4d]
[bt]: (9) ./MyApp() [0x6ec6b9]
EDIT 1 : further invetisgation
The bad thing is, the exception is thrown by run(), and not any async_read / async_write. I'm not using strand because I only have one thread running the io_service.
Would handle tracking appeared in the 1.48 version of boost would help me figure this out ? I'm not quite sure what this is yet.
EDIT 2 : Compiled with -g3
Unfortunately won't give me much more information...
#0 0x00007ffff595a165 in raise () from /lib/libc.so.6
#1 0x00007ffff595cf70 in abort () from /lib/libc.so.6
#2 0x00000000006b9bca in my_terminate () at src/main.cc:137
#3 0x00007ffff61ec166 in ?? () from /usr/lib/libstdc++.so.6
#4 0x00007ffff61eb059 in ?? () from /usr/lib/libstdc++.so.6
#5 0x00007ffff61ebb01 in __gxx_personality_v0 () from /usr/lib/libstdc++.so.6
#6 0x00007ffff5c997f3 in ?? () from /lib/libgcc_s.so.1
#7 0x00007ffff5c998b8 in _Unwind_Resume () from /lib/libgcc_s.so.1
#8 0x00000000006be7de in ~io_service (this=0x7fffffffe5e0, __in_chrg=<value optimized out>) at /usr/local/include/boost/asio/impl/io_service.ipp:54
#9 0x00000000006b9f13 in main (argc=1, argv=0x7fffffffe7d8) at src/main.cc:216
EDIT 3 :
Even with a :
try {
io_service.run();
} catch (std::exception& e) {
std::cout << "Exception: " << e.what() << std::endl;
}
The exception is not caught here, and still give me the same error. Very odd, even if according the backtrace the exception is thrown from here, or am I wrong ? I hope I am !
EDIT 4 : Experimentation
I have tried one or two things, just to see how an error like this can be thrown.
boost::function<void(void)> cb = NULL;
try {
cb();
} catch (std::exception& e) {
std::cout << "Exception example: " << e.what() << std::endl;
}
This bit of code will print :
Exception example : call to empty boost::function
without crashing, so it is correctly caught
However :
boost::function<void(void)> cb = NULL;
try {
io_service.post(cb);
} catch (std::exception& e) {
std::cout << "Exception example: " << e.what() << std::endl;
}
Will lamentaly crash with almost the same error that drives me crazy (I just do not get the my_terminate caught unhandled exception. what(): call to empty boost::function) only the same backtrace...
How can this kind of exception can be caught ?
Any ideas on how to pinpoint this issue would really be appreciated.
-g3and get a backtrace using gdb. That way it will show you the exact line of code where it fails. – filmor Jan 7 at 13:55io_service. You have to writetry { io_service ios; /* do stuff with ios */ } catch …to catch it. (Meaning ios has to be in the scope of thetry-block, so its destructed at the end of it instead of the end of the program. More code please :) – filmor Jan 8 at 12:55