changeset 475:1a1265445157

core: forgot panic_handler
author David Demelier <markand@malikania.fr>
date Mon, 27 Feb 2023 12:44:13 +0100
parents ca30ff96bbe0
children 00b30f899548
files libmlk-core/mlk/core/panic.c libmlk-core/mlk/core/panic.h
diffstat 2 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/libmlk-core/mlk/core/panic.c	Mon Feb 27 12:41:53 2023 +0100
+++ b/libmlk-core/mlk/core/panic.c	Mon Feb 27 12:44:13 2023 +0100
@@ -31,7 +31,7 @@
 	exit(1);
 }
 
-void (*panic_handler)(void) = terminate;
+void (*mlk_panic_handler)(void) = terminate;
 
 void
 mlk_panicf(const char *fmt, ...)
@@ -55,7 +55,7 @@
 mlk_panicva(const char *fmt, va_list ap)
 {
 	assert(fmt);
-	assert(panic_handler);
+	assert(mlk_panic_handler);
 
 	errorva(fmt, ap);
 	mlk_panic();
@@ -64,13 +64,13 @@
 void
 mlk_panic(void)
 {
-	assert(panic_handler);
+	assert(mlk_panic_handler);
 
-	panic_handler();
+	mlk_panic_handler();
 
 	/*
 	 * This should not happen, if it does it means the user did not fully
-	 * satisfied the constraint of panic_handler.
+	 * satisfied the constraint of mlk_panic_handler.
 	 */
 	fprintf(stderr, "abort: panic handler returned\n");
 	exit(1);
--- a/libmlk-core/mlk/core/panic.h	Mon Feb 27 12:41:53 2023 +0100
+++ b/libmlk-core/mlk/core/panic.h	Mon Feb 27 12:44:13 2023 +0100
@@ -23,7 +23,7 @@
 
 #include "core.h"
 
-extern void (*panic_handler)(void);
+extern void (*mlk_panic_handler)(void);
 
 MLK_CORE_BEGIN_DECLS