Tshark handles exceptions/assertion failures on Windows, but on Linux, it will crash on exceptions/assertion failures, how to do? asked 11 Feb '14, 23:28 metamatrix |
One Answer:
You'd have to catch SIGSEGV, SIGBUS, SIGFPE (which, in practice, many UN*Xes use for integer division), and SIGABRT (which is what UN*X systems don't have Windows-style structured exception handling for errors such as those, so that's going to be harder to do. answered 12 Feb '14, 16:52 Guy Harris ♦♦ edited 17 Feb '14, 01:20 |
can you please show an example where tshark on Windows fails 'in a better/different way' than on Linux?
e.g. packet-frame.c ln 491
What are you trying to do on Linux with tshark?