From 0c5e3e83505af23942a261c23577c56aae12cc41 Mon Sep 17 00:00:00 2001 From: Geunhae LEE Date: Thu, 20 Mar 2014 14:04:52 +0900 Subject: [PATCH] dump backtrace : disable to compile followings - signal handler registeration-relatives Change-Id: I88bb971c56d2b3063b65e81be2b1a7a537358b15 Signed-off-by: Geunhae LEE --- tizen/src/maru_err_table.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tizen/src/maru_err_table.c b/tizen/src/maru_err_table.c index 1273d66ae5..508a70ae31 100644 --- 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 -- 2.34.1