summaryrefslogblamecommitdiffstats
path: root/src/OSSupport/StackTrace.cpp
blob: b8f80f5f3ca8841a81b6b74de61608405eaeffb0 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                         
                                   
                                                                  


                                     
                           








                          

                                             






                                                                     
                               

                                                                                         
                                                                                                                                             
                                              
                                                                                      

                                                                                  

              

// StackTrace.cpp

// Implements the functions to print current stack traces

#include "Globals.h"
#include "StackTrace.h"
#ifdef _WIN32
	#include "WinStackWalker.h"
#elif !defined(ANDROID)  // The Android NDK has no execinfo header
	#ifdef __GLIBC__
		#include <execinfo.h>
	#endif
	#include <unistd.h>
#endif





void PrintStackTrace(void)
{
	#ifdef _WIN32
		class PrintingStackWalker:
			public WinStackWalker
		{
			virtual void OnOutput(LPCSTR szText) override
			{
				puts(szText);
			}
		} sw;
		sw.ShowCallstack();
	#elif !defined(ANDROID)
		#ifdef __GLIBC__
			// Use the backtrace() function to get and output the stackTrace:
			// Code adapted from https://stackoverflow.com/questions/77005/how-to-generate-a-stacktrace-when-my-gcc-c-app-crashes
			void * stackTrace[30];
			auto numItems = backtrace(stackTrace, ARRAYCOUNT(stackTrace));
			backtrace_symbols_fd(stackTrace, numItems, STDERR_FILENO);
		#endif
	#endif
}