Remove all leftover PX4_BACKTRACE calls

This commit is contained in:
Julian Oes
2019-05-29 15:07:04 +02:00
committed by Beat Küng
parent 5273e2af04
commit f3620f7018
5 changed files with 1 additions and 7 deletions
-2
View File
@@ -434,7 +434,6 @@ void sig_fpe_handler(int sig_num)
{
fflush(stdout);
printf("\nfloating point exception\n");
PX4_BACKTRACE();
fflush(stdout);
px4_daemon::Pxh::stop();
_exit_requested = true;
@@ -444,7 +443,6 @@ void sig_segv_handler(int sig_num)
{
fflush(stdout);
printf("\nSegmentation Fault\n");
PX4_BACKTRACE();
fflush(stdout);
}
+1 -1
View File
@@ -411,7 +411,7 @@ hrt_call_internal(struct hrt_call *entry, hrt_abstime deadline, hrt_abstime inte
// Use this to debug busy CPU that keeps rescheduling with 0 period time
/*if (interval < HRT_INTERVAL_MIN) {*/
/*PX4_ERR("hrt_call_internal interval too short: %" PRIu64, interval);*/
/*PX4_BACKTRACE();*/
/*abort();*/
/*}*/
#endif