mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 06:10:06 +00:00
hurd: Avoid PLT ref to __mach_msg
* sysdeps/mach/include/mach.h (__mach_msg): Add hidden prototype. * mach/msg.c: Include <mach.h>. (__mach_msg): Add hidden definition.
This commit is contained in:
parent
c1b7586c54
commit
7a646a93fa
@ -22,6 +22,9 @@
|
||||
* mach/shortcut.awk: Make syscall stubs include
|
||||
<mach-shortcuts-hidden.h> and add hidden definition.
|
||||
* sysdeps/mach/include/mach.h: Include <mach-shortcuts-hidden.h>.
|
||||
(__mach_msg): Add hidden prototype.
|
||||
* mach/msg.c: Include <mach.h>.
|
||||
(__mach_msg): Add hidden definition.
|
||||
|
||||
2018-06-15 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
|
@ -25,6 +25,7 @@
|
||||
*/
|
||||
#include <mach/port.h>
|
||||
#include <mach/message.h>
|
||||
#include <mach.h>
|
||||
|
||||
#ifdef MACH_MSG_OVERWRITE
|
||||
/* In variants with this feature, the actual system call is
|
||||
@ -125,6 +126,7 @@ __mach_msg (mach_msg_header_t *msg,
|
||||
return ret;
|
||||
}
|
||||
weak_alias (__mach_msg, mach_msg)
|
||||
libc_hidden_def (__mach_msg)
|
||||
|
||||
mach_msg_return_t
|
||||
__mach_msg_send (mach_msg_header_t *msg)
|
||||
|
@ -3,5 +3,6 @@
|
||||
#include <mach-shortcuts-hidden.h>
|
||||
#ifndef _ISOMAC
|
||||
libc_hidden_proto (__mach_msg_destroy)
|
||||
libc_hidden_proto (__mach_msg)
|
||||
#endif
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user