From: Ilya Konstantinov Date: Thu, 11 Jun 2015 18:42:00 +0000 (+0300) Subject: gbacktrace: fix G_BREAKPOINT on Darwin (OSX, iOS) X-Git-Tag: 2.45.4~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=27fae8390946e73e8343a7fd7505796f3599ee23;p=platform%2Fupstream%2Fglib.git gbacktrace: fix G_BREAKPOINT on Darwin (OSX, iOS) Using __builtin_trap() according to Apple's own documentation: https://developer.apple.com/library/mac/technotes/tn2124/_index.html#//apple_ref/doc/uid/DTS10003391-CH1-SECCONTROLLEDCRASH https://bugzilla.gnome.org/show_bug.cgi?id=750807 --- diff --git a/glib/gbacktrace.h b/glib/gbacktrace.h index 03b6029..1a4f534 100644 --- a/glib/gbacktrace.h +++ b/glib/gbacktrace.h @@ -55,6 +55,8 @@ void g_on_error_stack_trace (const gchar *prg_name); # define G_BREAKPOINT() G_STMT_START{ __debugbreak(); }G_STMT_END #elif defined (__alpha__) && !defined(__osf__) && defined (__GNUC__) && __GNUC__ >= 2 # define G_BREAKPOINT() G_STMT_START{ __asm__ __volatile__ ("bpt"); }G_STMT_END +#elif defined (__APPLE__) +# define G_BREAKPOINT() G_STMT_START{ __builtin_trap(); }G_STMT_END #else /* !__i386__ && !__alpha__ */ # define G_BREAKPOINT() G_STMT_START{ raise (SIGTRAP); }G_STMT_END #endif /* __i386__ */