2003-03-06 Reinhard Jessich <reinhard.jessich@telering.at>
PR 9954/other
* config/i386/linux.h (MD_FALLBACK_FRAME_STATE_FOR): Since this uses
<sys/ucontext.h> it should be wrapped in an inhibit_libc conditional
like the same code in config/i386/linux64.h.
From-SVN: r63902
+2003-03-06 Reinhard Jessich <reinhard.jessich@telering.at>
+
+ PR 9954/other
+ * config/i386/linux.h (MD_FALLBACK_FRAME_STATE_FOR): Since this uses
+ <sys/ucontext.h> it should be wrapped in an inhibit_libc conditional
+ like the same code in config/i386/linux64.h.
+
2003-03-05 Eric Botcazou <ebotcazou@libertysurf.fr>
PR c/9799
#endif
/* Do code reading to identify a signal frame, and set the frame
- state data appropriately. See unwind-dw2.c for the structs. */
+ state data appropriately. See unwind-dw2.c for the structs.
+ Don't use this at all if inhibit_libc is used. */
+#ifndef inhibit_libc
#ifdef IN_LIBGCC2
#include <signal.h>
#include <sys/ucontext.h>
(FS)->retaddr_column = 8; \
goto SUCCESS; \
} while (0)
+#endif /* ifndef inhibit_libc */