From: Geunhae LEE Date: Thu, 20 Mar 2014 05:04:52 +0000 (+0900) Subject: dump backtrace : disable to compile followings X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~455 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0c5e3e83505af23942a261c23577c56aae12cc41;p=sdk%2Femulator%2Fqemu.git dump backtrace : disable to compile followings - signal handler registeration-relatives Change-Id: I88bb971c56d2b3063b65e81be2b1a7a537358b15 Signed-off-by: Geunhae LEE --- 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