Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 41f1830f5a7af77cf5c86359aba3cbd706687e52 authored by Linus Torvalds on 19 June 2017, 14:19:37 UTC
Linux 4.12-rc6
Tip revision: 41f1830
test-libdw-dwarf-unwind.c

#include <elfutils/libdwfl.h>

int main(void)
{
	/*
	 * This function is guarded via: __nonnull_attribute__ (1, 2).
	 * Passing '1' as arguments value. This code is never executed,
	 * only compiled.
	 */
	dwfl_thread_getframes((void *) 1, (void *) 1, NULL);
	return 0;
}
back to top