projects
/
sdk
/
emulator
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fbc91bd
)
dump backtrace : disable to compile followings
84/18284/1
author
Geunhae LEE
<geunhae.lee@samsung.com>
Thu, 20 Mar 2014 05:04:52 +0000
(14:04 +0900)
committer
Geunhae LEE
<geunhae.lee@samsung.com>
Thu, 20 Mar 2014 05:05:47 +0000
(14:05 +0900)
- signal handler registeration-relatives
Change-Id: I88bb971c56d2b3063b65e81be2b1a7a537358b15
Signed-off-by: Geunhae LEE <geunhae.lee@samsung.com>
tizen/src/maru_err_table.c
patch
|
blob
|
history
diff --git
a/tizen/src/maru_err_table.c
b/tizen/src/maru_err_table.c
index 1273d66ae5b327e434a572b7fb5df91bcc1ba542..508a70ae3161c5632b227d99c2740ef431791ae7 100644
(file)
--- a/
tizen/src/maru_err_table.c
+++ b/
tizen/src/maru_err_table.c
@@
-364,12
+364,12
@@
void maru_sighandler(int sig)
#endif
+#ifndef CONFIG_DARWIN
void maru_register_exception_handler(void)
{
#ifdef CONFIG_WIN32
prevExceptionFilter = SetUnhandledExceptionFilter(maru_unhandled_exception_filter);
-#else
-
+#else // LINUX
void *trace[1];
struct sigaction sa;
@@
-390,3
+390,4
@@
void maru_register_exception_handler(void)
sigaction(SIGINT, &sa, NULL);
#endif
}
+#endif