1 /** 2 * D header file for GNU/Linux. 3 * 4 * Copyright: Copyright Martin Nowak 2012. 5 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) 6 * Authors: Martin Nowak 7 */ 8 module core.sys.linux.execinfo; 9 10 version (linux): 11 extern (C): 12 nothrow: 13 @system: 14 @nogc: 15 16 int backtrace(void** buffer, int size); 17 char** backtrace_symbols(const(void*)* buffer, int size); 18 void backtrace_symbols_fd(const(void*)* buffer, int size, int fd); 19