mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-11 19:54:05 +02:00
gbacktrace.c: special treatment for a weird symbol
We have a public symbol 'glib_on_error_halt' that is exported from gbacktrace.c without appearing in a header, presumably with the intention that people will be able to hit it from their debugger. Mark it as GLIB_AVAILABLE_IN_ALL from inside the .c file... https://bugzilla.gnome.org/show_bug.cgi?id=688681
This commit is contained in:
@@ -89,7 +89,8 @@
|
|||||||
static void stack_trace (char **args);
|
static void stack_trace (char **args);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern volatile gboolean glib_on_error_halt;
|
/* People want to hit this from their debugger... */
|
||||||
|
GLIB_AVAILABLE_IN_ALL volatile gboolean glib_on_error_halt;
|
||||||
volatile gboolean glib_on_error_halt = TRUE;
|
volatile gboolean glib_on_error_halt = TRUE;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user