mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
595056135f
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65202 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
21 lines
442 B
C
21 lines
442 B
C
/**********************************************************************
|
|
|
|
addr2line.h -
|
|
|
|
$Author$
|
|
|
|
Copyright (C) 2010 Shinichiro Hamaji
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef RUBY_ADDR2LINE_H
|
|
#define RUBY_ADDR2LINE_H
|
|
|
|
#if (defined(USE_ELF) || defined(HAVE_MACH_O_LOADER_H))
|
|
|
|
void
|
|
rb_dump_backtrace_with_lines(int num_traces, void **traces);
|
|
|
|
#endif /* USE_ELF */
|
|
|
|
#endif /* RUBY_ADDR2LINE_H */
|