Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
59995558
Commit
59995558
authored
Dec 02, 2010
by
Vicent Marti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix segfault handler in Mac OS X
Signed-off-by: Vicent Marti <tanoku@gmail.com>
parent
691aa968
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
39 deletions
+9
-39
tests/test_main.c
+9
-39
No files found.
tests/test_main.c
View file @
59995558
...
@@ -32,48 +32,21 @@
...
@@ -32,48 +32,21 @@
* GCC only
* GCC only
*/
*/
#ifdef __GNUC__
#ifdef __GNUC__
#include <stdio.h>
#include <execinfo.h>
#include <execinfo.h>
#include <signal.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <ucontext.h>
#include <unistd.h>
typedef
struct
_sig_ucontext
{
void
crash_handler
(
int
sig
)
unsigned
long
uc_flags
;
struct
ucontext
*
uc_link
;
stack_t
uc_stack
;
struct
sigcontext
uc_mcontext
;
sigset_t
uc_sigmask
;
}
sig_ucontext_t
;
void
crash_handler
(
int
sig_num
,
siginfo_t
*
info
,
void
*
ucontext
)
{
{
void
*
array
[
50
];
void
*
array
[
10
];
void
*
caller_address
;
size_t
size
;
char
**
messages
;
int
size
,
i
;
sig_ucontext_t
*
uc
;
uc
=
(
sig_ucontext_t
*
)
ucontext
;
caller_address
=
(
void
*
)
uc
->
uc_mcontext
.
eip
;
fprintf
(
stderr
,
"Signal %d (%s), address: %p from %p
\n
"
,
sig_num
,
strsignal
(
sig_num
),
info
->
si_addr
,
(
void
*
)
caller_address
);
size
=
backtrace
(
array
,
50
);
array
[
1
]
=
caller_address
;
messages
=
backtrace_symbols
(
array
,
size
);
for
(
i
=
1
;
i
<
size
&&
messages
!=
NULL
;
++
i
)
size
=
backtrace
(
array
,
10
);
fprintf
(
stderr
,
"
\t
(%d) %s
\n
"
,
i
,
messages
[
i
]);
free
(
messages
);
fprintf
(
stderr
,
"Error (signal %d)
\n
"
,
sig
);
exit
(
EXIT_FAILURE
);
backtrace_symbols_fd
(
array
,
size
,
2
);
exit
(
1
);
}
}
#endif
#endif
...
@@ -99,10 +72,7 @@ int main(int argc, char **argv)
...
@@ -99,10 +72,7 @@ int main(int argc, char **argv)
struct
test_def
*
t
;
struct
test_def
*
t
;
#ifdef __GNUC__
#ifdef __GNUC__
struct
sigaction
sigact
;
signal
(
SIGSEGV
,
crash_handler
);
sigact
.
sa_sigaction
=
crash_handler
;
sigact
.
sa_flags
=
SA_RESTART
|
SA_SIGINFO
;
sigaction
(
SIGSEGV
,
&
sigact
,
(
struct
sigaction
*
)
NULL
);
#endif
#endif
if
(
argc
==
1
)
{
if
(
argc
==
1
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment