From: Thomas Vander Stichele Date: Thu, 14 Mar 2002 16:01:14 +0000 (+0000) Subject: G_BREAKPOINT is x86-only X-Git-Tag: BRANCH-RELEASE-0_3_3-ROOT~63 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8a39e98f8b6bdbb43d4784bd1609c4f612f85e72;p=platform%2Fupstream%2Fgstreamer.git G_BREAKPOINT is x86-only Original commit message from CVS: G_BREAKPOINT is x86-only --- diff --git a/gst/schedulers/gststandardscheduler.c b/gst/schedulers/gststandardscheduler.c index b8eba98..d94538e 100644 --- a/gst/schedulers/gststandardscheduler.c +++ b/gst/schedulers/gststandardscheduler.c @@ -242,7 +242,9 @@ static inline void sched_switch (cothread *to) if (from == to) { GST_DEBUG (GST_CAT_COTHREAD_SWITCH, "trying to switch to the same cothread (%p), not allowed\n", to); - G_BREAKPOINT(); + /* wingo says G_BREAKPOINT only works for x86, so change it */ + /* G_BREAKPOINT(); */ + g_assert_not_reached (); } GST_INFO (GST_CAT_COTHREAD_SWITCH, "switching from cothread %p to cothread %p", from, to);