]> git.ipfire.org Git - thirdparty/gcc.git/blame - libphobos/libdruntime/core/sys/linux/execinfo.d
Merge remote-tracking branch 'origin/master' into devel/c++-contracts
[thirdparty/gcc.git] / libphobos / libdruntime / core / sys / linux / execinfo.d
CommitLineData
b4c522fa
IB
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 */
8module core.sys.linux.execinfo;
9
10version (linux):
11extern (C):
12nothrow:
92dd3e71 13@nogc:
b4c522fa
IB
14
15int backtrace(void** buffer, int size);
16char** backtrace_symbols(const(void*)* buffer, int size);
17void backtrace_symbols_fd(const(void*)* buffer, int size, int fd);