Changeset: 2e5b5365b5a9 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=2e5b5365b5a9
Modified Files:
gdk/gdk_utils.c
Branch: Nov2019
Log Message:
In case of a fatal situation, don't try to be nice but just call exit().
Being nice may result in deadlock, the opposite of the intended result.
diffs (12 lines):
diff --git a/gdk/gdk_utils.c b/gdk/gdk_utils.c
--- a/gdk/gdk_utils.c
+++ b/gdk/gdk_utils.c
@@ -1410,7 +1410,7 @@ GDKfatal(const char *format, ...)
#ifdef COREDUMP
abort();
#else
- GDKexit(1);
+ exit(1);
#endif
}
}
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list