diff options
author | Damjan Jovanovic <damjan@apache.org> | 2015-11-26 18:33:01 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-11-30 17:21:39 +0000 |
commit | a1a8aa8ef80066dd2fbabbf136dde874c864db8b (patch) | |
tree | d3565e3c64172cdac8e48f86bf07aaba849db7a2 /sal | |
parent | 4d3c91ee82de53589924ca72c22a745ffba6e6af (diff) |
Fix the stack frame layout for backtraces on FreeBSD.
Patch by: me
(cherry picked from commit 0faee39deac292694d036d753b7dc1c4513e045f)
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/unx/backtrace.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sal/osl/unx/backtrace.h b/sal/osl/unx/backtrace.h index c7fb99289850..35d2543f95e5 100644 --- a/sal/osl/unx/backtrace.h +++ b/sal/osl/unx/backtrace.h @@ -34,8 +34,6 @@ void backtrace_symbols_fd( void **buffer, int size, int fd ); #if defined (FREEBSD) || defined (NETBSD) || defined (OPENBSD) || \ defined (DRAGONFLY) struct frame { - long arg0[8]; - long arg1[6]; struct frame *fr_savfp; long fr_savpc; }; |