aboutsummaryrefslogtreecommitdiff
path: root/mach
diff options
context:
space:
mode:
Diffstat (limited to 'mach')
-rw-r--r--mach/errstring.c1
-rw-r--r--mach/msg-destroy.c1
-rw-r--r--mach/mutex-init.c1
-rw-r--r--mach/spin-lock.c6
-rw-r--r--mach/spin-solid.c1
5 files changed, 10 insertions, 0 deletions
diff --git a/mach/errstring.c b/mach/errstring.c
index c00b02c..3e665e6 100644
--- a/mach/errstring.c
+++ b/mach/errstring.c
@@ -59,6 +59,7 @@ mach_error_type(mach_error_t err)
|| sub >= errors[system].max_sub ) return( "(?/?)" );
return( errors[system].subsystem[sub].subsys_name );
}
+libc_hidden_def (mach_error_type)
boolean_t mach_error_full_diag = FALSE;
diff --git a/mach/msg-destroy.c b/mach/msg-destroy.c
index bc7dd55..7429ecb 100644
--- a/mach/msg-destroy.c
+++ b/mach/msg-destroy.c
@@ -189,6 +189,7 @@ __mach_msg_destroy (mach_msg_header_t *msg)
}
weak_alias (__mach_msg_destroy, mach_msg_destroy)
+libc_hidden_def (__mach_msg_destroy)
static void
mach_msg_destroy_port (mach_port_t port, mach_msg_type_name_t type)
diff --git a/mach/mutex-init.c b/mach/mutex-init.c
index 776fec5..a8f238c 100644
--- a/mach/mutex-init.c
+++ b/mach/mutex-init.c
@@ -24,3 +24,4 @@ __mutex_init (void *lock)
{
*(int *)lock = LLL_INITIALIZER;
}
+libc_hidden_def (__mutex_init)
diff --git a/mach/spin-lock.c b/mach/spin-lock.c
index 1b1e69c..888eb9d 100644
--- a/mach/spin-lock.c
+++ b/mach/spin-lock.c
@@ -3,7 +3,13 @@
#include "spin-lock.h"
weak_alias (__spin_lock_init, spin_lock_init);
+libc_hidden_def (__spin_lock_locked);
weak_alias (__spin_lock_locked, spin_lock_locked);
+libc_hidden_def (__spin_lock);
weak_alias (__spin_lock, spin_lock);
+libc_hidden_def (__spin_unlock);
weak_alias (__spin_unlock, spin_unlock);
+libc_hidden_def (__spin_try_lock);
weak_alias (__spin_try_lock, spin_try_lock);
+libc_hidden_def (__mutex_lock);
+libc_hidden_def (__mutex_trylock);
diff --git a/mach/spin-solid.c b/mach/spin-solid.c
index 6612885..db1bcd0 100644
--- a/mach/spin-solid.c
+++ b/mach/spin-solid.c
@@ -26,3 +26,4 @@ __spin_lock_solid (spin_lock_t *lock)
__swtch_pri (0);
}
weak_alias (__spin_lock_solid, spin_lock_solid);
+libc_hidden_def (__spin_lock_solid)