Преглед на файлове

__assert_fail(): remove _Noreturn, to get proper stacktraces

for _Noreturn functions, gcc generates code that trashes the
stack frame, and so it makes it impossible to inspect the causes
of an assert error in gdb.

abort() is not affected (i have not yet investigated why).
rofl0r преди 12 години
родител
ревизия
2c1f8fd5da
променени са 2 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 1 1
      include/assert.h
  2. 1 1
      src/exit/assert.c

+ 1 - 1
include/assert.h

@@ -12,7 +12,7 @@
 extern "C" {
 #endif
 
-_Noreturn void __assert_fail (const char *, const char *, int, const char *);
+void __assert_fail (const char *, const char *, int, const char *);
 
 #ifdef __cplusplus
 }

+ 1 - 1
src/exit/assert.c

@@ -1,7 +1,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 
-_Noreturn void __assert_fail(const char *expr, const char *file, int line, const char *func)
+void __assert_fail(const char *expr, const char *file, int line, const char *func)
 {
 	fprintf(stderr, "Assertion failed: %s (%s: %s: %d)\n", expr, file, func, line);
 	fflush(NULL);