I am writing a C++ application for an embedded Linux. I have a problem where runtime errors, like unhandled exceptions and segmentation faults, that occur in threads other than the main thread are not displayed in the console. In such cases my application will be terminated abruptly without any error message. Is there any way to get the error messages to the default console of the parent main thread? (gdb is not supported on my embedded linux)
I am writing a C++ application for an embedded Linux. I have a problem
Share
I found out that these
runtime-errorsare displayed in thesyslogfiles, that completely fulfills my requirements.