X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=glib%2Fgbacktrace.c;h=c59d18e1fdd192faaaac2b73827715b1981bceab;hb=d217429729aad360f372633f2ec99778c0fc08d5;hp=17ded63a5a30e0608858df6ac4d279059befe4e4;hpb=faa007c8274d786d070884834b080e47a7951fa9;p=platform%2Fupstream%2Fglib.git diff --git a/glib/gbacktrace.c b/glib/gbacktrace.c index 17ded63..c59d18e 100644 --- a/glib/gbacktrace.c +++ b/glib/gbacktrace.c @@ -90,18 +90,18 @@ volatile gboolean glib_on_error_halt = TRUE; /** * g_on_error_query: - * @prg_name: the program name, needed by gdb - * for the [S]tack trace option. If @prg_name is %NULL, g_get_prgname() - * is called to get the program name (which will work correctly if - * gdk_init() or gtk_init() has been called) + * @prg_name: the program name, needed by gdb for the "[S]tack trace" + * option. If @prg_name is %NULL, g_get_prgname() is called to get + * the program name (which will work correctly if gdk_init() or + * gtk_init() has been called) * * Prompts the user with - * [E]xit, [H]alt, show [S]tack trace or [P]roceed. + * `[E]xit, [H]alt, show [S]tack trace or [P]roceed`. * This function is intended to be used for debugging use only. * The following example shows how it can be used together with * the g_log() functions. * - * |[ + * |[ * #include * * static void @@ -127,14 +127,14 @@ volatile gboolean glib_on_error_halt = TRUE; * ... * ]| * - * If [E]xit is selected, the application terminates with a call - * to _exit(0). + * If "[E]xit" is selected, the application terminates with a call + * to _exit(0). * - * If [S]tack trace is selected, g_on_error_stack_trace() is called. - * This invokes gdb, which attaches to the current - * process and shows a stack trace. The prompt is then shown again. + * If "[S]tack" trace is selected, g_on_error_stack_trace() is called. + * This invokes gdb, which attaches to the current process and shows + * a stack trace. The prompt is then shown again. * - * If [P]roceed is selected, the function returns. + * If "[P]roceed" is selected, the function returns. * * This function may cause different actions on non-UNIX platforms. */ @@ -209,14 +209,14 @@ g_on_error_query (const gchar *prg_name) /** * g_on_error_stack_trace: - * @prg_name: the program name, needed by gdb - * for the [S]tack trace option. + * @prg_name: the program name, needed by gdb for the "[S]tack trace" + * option * - * Invokes gdb, which attaches to the current - * process and shows a stack trace. Called by g_on_error_query() - * when the [S]tack trace option is selected. You can get the current - * process's "program name" with g_get_prgname(), assuming that you - * have called gtk_init() or gdk_init(). + * Invokes gdb, which attaches to the current process and shows a + * stack trace. Called by g_on_error_query() when the "[S]tack trace" + * option is selected. You can get the current process's program name + * with g_get_prgname(), assuming that you have called gtk_init() or + * gdk_init(). * * This function may cause different actions on non-UNIX platforms. */