public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH][PR gdb/17046] Use standard setjmp.h on Darwin
@ 2014-09-15 21:25 James Clarke
  2014-09-15 21:36 ` Sergio Durigan Junior
  2014-09-16  8:41 ` Tristan Gingold
  0 siblings, 2 replies; 8+ messages in thread
From: James Clarke @ 2014-09-15 21:25 UTC (permalink / raw)
  To: gdb-patches; +Cc: James Clarke

The `machine/setjmp.h' header is no longer present on OS X 10.10, and is
non-standard. Instead, `darwin-nat.c' should be using the standard
`setjmp.h' header.

gdb/ChangeLog:

2014-09-15  James Clarke  <jrtc27@jrtc27.com>

	PR gdb/17046
	* darwin-nat.c: Import standard setjmp.h rather than the non-standard
	machine/setjmp.h header that no longer exists as of OS X 10.10.
---
 gdb/darwin-nat.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gdb/darwin-nat.c b/gdb/darwin-nat.c
index af4ec01..e550785 100644
--- a/gdb/darwin-nat.c
+++ b/gdb/darwin-nat.c
@@ -42,7 +42,7 @@
 
 #include <sys/ptrace.h>
 #include <sys/signal.h>
-#include <machine/setjmp.h>
+#include <setjmp.h>
 #include <sys/types.h>
 #include <unistd.h>
 #include <signal.h>
-- 
2.1.0

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2015-01-12 17:49 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-15 21:25 [PATCH][PR gdb/17046] Use standard setjmp.h on Darwin James Clarke
2014-09-15 21:36 ` Sergio Durigan Junior
2014-09-15 23:45   ` James Clarke
2014-09-16  8:41 ` Tristan Gingold
2015-01-06 22:42   ` Simon Marchi
2015-01-12 13:41     ` Simon Marchi
2015-01-12 17:21       ` Joel Brobecker
2015-01-12 17:49         ` Simon Marchi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).