dump backtrace : disable to compile followings 84/18284/1
authorGeunhae LEE <geunhae.lee@samsung.com>
Thu, 20 Mar 2014 05:04:52 +0000 (14:04 +0900)
committerGeunhae 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

index 1273d66ae5b327e434a572b7fb5df91bcc1ba542..508a70ae3161c5632b227d99c2740ef431791ae7 100644 (file)
@@ -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