digitalmars.D.learn - Getting backtrace
- Xavier Bigand (1/1) Jan 08 2014 Is there a way to get backtrace outside exceptions?
- Benjamin Thaut (2/3) Jan 08 2014 On which plattform?
- Adam D. Ruppe (4/5) Jan 08 2014 Yes
- Benjamin Thaut (12/13) Jan 08 2014 Found a plattform independend way:
- Xavier Bigand (2/15) Jan 09 2014 It's exactly what I need, thank you.
- yazd (3/4) Jan 08 2014 If you're on Linux, you can try this library:
Is there a way to get backtrace outside exceptions?
Jan 08 2014
Am 08.01.2014 21:25, schrieb Xavier Bigand:Is there a way to get backtrace outside exceptions?On which plattform?
Jan 08 2014
On Wednesday, 8 January 2014 at 20:25:28 UTC, Xavier Bigand wrote:Is there a way to get backtrace outside exceptions?Yes http://arsdnet.net/dcode/stacktrace.d works at least on linux
Jan 08 2014
Am 08.01.2014 21:25, schrieb Xavier Bigand:Is there a way to get backtrace outside exceptions?Found a plattform independend way: import core.runtime; import std.stdio; void main(string[] args) { auto trace = defaultTraceHandler(null); foreach(t; trace) { writefln("%s", t); } }
Jan 08 2014
Le 08/01/2014 21:29, Benjamin Thaut a écrit :Am 08.01.2014 21:25, schrieb Xavier Bigand:It's exactly what I need, thank you.Is there a way to get backtrace outside exceptions?Found a plattform independend way: import core.runtime; import std.stdio; void main(string[] args) { auto trace = defaultTraceHandler(null); foreach(t; trace) { writefln("%s", t); } }
Jan 09 2014
On Wednesday, 8 January 2014 at 20:25:28 UTC, Xavier Bigand wrote:Is there a way to get backtrace outside exceptions?If you're on Linux, you can try this library: https://github.com/yazd/backtrace-d
Jan 08 2014