public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* hurd: fix RPC stubs names
@ 2017-08-27 18:37 Samuel Thibault
  2018-07-15 10:49 ` Samuel Thibault
  0 siblings, 1 reply; 3+ messages in thread
From: Samuel Thibault @ 2017-08-27 18:37 UTC (permalink / raw)
  To: gdb-patches; +Cc: Thomas Schwinge

Mach RPCs expect C names for RPC stubs, so we should make sure they are
defined with C names.

* gdb/gnu-nat.c (ILL_RPC): Enclose RPC stub definition in extern "C" { }

diff --git a/gdb/gnu-nat.c b/gdb/gnu-nat.c
index d5e3841e68..b39d3d0a90 100644
--- a/gdb/gnu-nat.c
+++ b/gdb/gnu-nat.c
@@ -1796,11 +1796,13 @@ do_mach_notify_dead_name (mach_port_t notify, mach_port_t dead_port)
 
 \f
 #define ILL_RPC(fun, ...) \
+  extern "C" { \
   extern kern_return_t fun (__VA_ARGS__); \
   kern_return_t fun (__VA_ARGS__) \
   { \
     warning (_("illegal rpc: %s"), #fun); \
     return 0; \
+  } \
   }
 
 ILL_RPC (do_mach_notify_no_senders,

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

end of thread, other threads:[~2018-07-15 13:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-27 18:37 hurd: fix RPC stubs names Samuel Thibault
2018-07-15 10:49 ` Samuel Thibault
2018-07-15 13:02   ` Thomas Schwinge

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).