mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-14 16:44:29 +08:00
20c99e8217
The various testcases used different styles, which was not really visible as long as they hid in feature-tests.mak. Now that they are out in the open make them prettier. ( Also delete the leftover, empty feature-tests.mak file. ) Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Namhyung Kim <namhyung@kernel.org> Cc: David Ahern <dsahern@gmail.com> Cc: Jiri Olsa <jolsa@redhat.com> Link: http://lkml.kernel.org/n/tip-drDWk8xltndjdsespzjbhu6w@git.kernel.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
14 lines
208 B
C
14 lines
208 B
C
#include <execinfo.h>
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
void *backtrace_fns[10];
|
|
size_t entries;
|
|
|
|
entries = backtrace(backtrace_fns, 10);
|
|
backtrace_symbols_fd(backtrace_fns, entries, 1);
|
|
|
|
return 0;
|
|
}
|