This patch adds support for shared library load when the executable is called through ld.so. Differential Revision:https://reviews.llvm.org/D108061
8 lines
107 B
C++
8 lines
107 B
C++
#include "signal_file.h"
|
|
#include <signal.h>
|
|
|
|
int get_signal_crash(void) {
|
|
raise(SIGSEGV);
|
|
return 0;
|
|
}
|