Exclude VxWorks platform from stack trace generation

Change-Id: I71c2e542ef144f544610edb9245dcbc38ea7db3f
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
bb10
Krzysztof Sommerfeld 2023-07-17 20:05:52 +02:00
parent 2b0d6a068f
commit d48f3b1ab4
1 changed files with 2 additions and 2 deletions

View File

@ -373,7 +373,7 @@ static void generateStackTrace()
if (debugger == None || alreadyDebugging())
return;
# if defined(Q_OS_UNIX) && !defined(Q_OS_WASM) && !defined(Q_OS_INTEGRITY)
# if defined(Q_OS_UNIX) && !defined(Q_OS_WASM) && !defined(Q_OS_INTEGRITY) && !defined(Q_OS_VXWORKS)
writeToStderr("\n=== Stack trace ===\n");
// execlp() requires null-termination, so call the default constructor
@ -410,7 +410,7 @@ static void generateStackTrace()
}
writeToStderr("=== End of stack trace ===\n");
# endif // Q_OS_UNIX && !Q_OS_WASM
# endif // Q_OS_UNIX && !Q_OS_WASM && !Q_OS_INTEGRITY && !Q_OS_VXWORKS
}
#endif // !defined(Q_OS_WASM) || QT_CONFIG(thread)