mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-15 20:25:12 +01:00
use G_BREAKPOINT() instead of raise(5).
Sat Jun 23 17:34:38 2001 Tim Janik <timj@gtk.org> * gmessages.c (g_logv): use G_BREAKPOINT() instead of raise(5).
This commit is contained in:
parent
f5c28ce4ab
commit
0646fe7c88
@ -1,3 +1,7 @@
|
|||||||
|
Sat Jun 23 17:34:38 2001 Tim Janik <timj@gtk.org>
|
||||||
|
|
||||||
|
* gmessages.c (g_logv): use G_BREAKPOINT() instead of raise(5).
|
||||||
|
|
||||||
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
|
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
Changes for 64-bit cleanliness, loosely based on patch
|
Changes for 64-bit cleanliness, loosely based on patch
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Sat Jun 23 17:34:38 2001 Tim Janik <timj@gtk.org>
|
||||||
|
|
||||||
|
* gmessages.c (g_logv): use G_BREAKPOINT() instead of raise(5).
|
||||||
|
|
||||||
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
|
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
Changes for 64-bit cleanliness, loosely based on patch
|
Changes for 64-bit cleanliness, loosely based on patch
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Sat Jun 23 17:34:38 2001 Tim Janik <timj@gtk.org>
|
||||||
|
|
||||||
|
* gmessages.c (g_logv): use G_BREAKPOINT() instead of raise(5).
|
||||||
|
|
||||||
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
|
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
Changes for 64-bit cleanliness, loosely based on patch
|
Changes for 64-bit cleanliness, loosely based on patch
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Sat Jun 23 17:34:38 2001 Tim Janik <timj@gtk.org>
|
||||||
|
|
||||||
|
* gmessages.c (g_logv): use G_BREAKPOINT() instead of raise(5).
|
||||||
|
|
||||||
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
|
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
Changes for 64-bit cleanliness, loosely based on patch
|
Changes for 64-bit cleanliness, loosely based on patch
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Sat Jun 23 17:34:38 2001 Tim Janik <timj@gtk.org>
|
||||||
|
|
||||||
|
* gmessages.c (g_logv): use G_BREAKPOINT() instead of raise(5).
|
||||||
|
|
||||||
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
|
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
Changes for 64-bit cleanliness, loosely based on patch
|
Changes for 64-bit cleanliness, loosely based on patch
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Sat Jun 23 17:34:38 2001 Tim Janik <timj@gtk.org>
|
||||||
|
|
||||||
|
* gmessages.c (g_logv): use G_BREAKPOINT() instead of raise(5).
|
||||||
|
|
||||||
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
|
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
Changes for 64-bit cleanliness, loosely based on patch
|
Changes for 64-bit cleanliness, loosely based on patch
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Sat Jun 23 17:34:38 2001 Tim Janik <timj@gtk.org>
|
||||||
|
|
||||||
|
* gmessages.c (g_logv): use G_BREAKPOINT() instead of raise(5).
|
||||||
|
|
||||||
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
|
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
Changes for 64-bit cleanliness, loosely based on patch
|
Changes for 64-bit cleanliness, loosely based on patch
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Sat Jun 23 17:34:38 2001 Tim Janik <timj@gtk.org>
|
||||||
|
|
||||||
|
* gmessages.c (g_logv): use G_BREAKPOINT() instead of raise(5).
|
||||||
|
|
||||||
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
|
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
Changes for 64-bit cleanliness, loosely based on patch
|
Changes for 64-bit cleanliness, loosely based on patch
|
||||||
|
@ -538,7 +538,7 @@ g_logv (const gchar *log_domain,
|
|||||||
{
|
{
|
||||||
#if defined (G_ENABLE_DEBUG) && defined (SIGTRAP)
|
#if defined (G_ENABLE_DEBUG) && defined (SIGTRAP)
|
||||||
if (!(test_level & G_LOG_FLAG_RECURSION))
|
if (!(test_level & G_LOG_FLAG_RECURSION))
|
||||||
raise (SIGTRAP);
|
G_BREAKPOINT ();
|
||||||
else
|
else
|
||||||
abort ();
|
abort ();
|
||||||
#else /* !G_ENABLE_DEBUG || !SIGTRAP */
|
#else /* !G_ENABLE_DEBUG || !SIGTRAP */
|
||||||
|
@ -538,7 +538,7 @@ g_logv (const gchar *log_domain,
|
|||||||
{
|
{
|
||||||
#if defined (G_ENABLE_DEBUG) && defined (SIGTRAP)
|
#if defined (G_ENABLE_DEBUG) && defined (SIGTRAP)
|
||||||
if (!(test_level & G_LOG_FLAG_RECURSION))
|
if (!(test_level & G_LOG_FLAG_RECURSION))
|
||||||
raise (SIGTRAP);
|
G_BREAKPOINT ();
|
||||||
else
|
else
|
||||||
abort ();
|
abort ();
|
||||||
#else /* !G_ENABLE_DEBUG || !SIGTRAP */
|
#else /* !G_ENABLE_DEBUG || !SIGTRAP */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user