diff mbox

[03/10] hostservices: Change abort to assert

Message ID 20150210151501.14819.60131.stgit@thinktux.in.ibm.com
State Rejected
Headers show

Commit Message

Ananth N Mavinakayanahalli Feb. 10, 2015, 3:15 p.m. UTC
... so we get good debug data on TI

Signed-off-by: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
---
 core/hostservices.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/core/hostservices.c b/core/hostservices.c
index 9cc3341..bcda1ff 100644
--- a/core/hostservices.c
+++ b/core/hostservices.c
@@ -239,7 +239,7 @@  static void hservice_mark(void)
 static void hservice_assert(void)
 {
 	prlog(PR_EMERG, "HBRT: Assertion from hostservices\n");
-	abort();
+	assert(false);
 }
 
 static void *hservice_malloc(size_t size)