hurd: Add missing symbols

* sysdeps/mach/hurd/i386/exc2signal.c (_hurd_exception2signal): Add
	hidden def.
	* mach/spin-lock.c (__mutex_unlock): Add hidden def.
This commit is contained in:
Samuel Thibault 2018-04-04 02:17:49 +02:00
parent e8ef51b171
commit ff297b70b5
3 changed files with 5 additions and 0 deletions

View File

@ -39,6 +39,9 @@
ifname is too long.
* hurd/hurdsig.c (interrupted_reply_port_location): Use
DIAG_IGNORE_NEEDS_COMMENT to silence warning with GCC 6 and before.
* sysdeps/mach/hurd/i386/exc2signal.c (_hurd_exception2signal): Add
hidden def.
* mach/spin-lock.c (__mutex_unlock): Add hidden def.
2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>

View File

@ -12,4 +12,5 @@ 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_unlock);
libc_hidden_def (__mutex_trylock);

View File

@ -163,3 +163,4 @@ _hurd_exception2signal (struct hurd_signal_detail *detail, int *signo)
break;
}
}
libc_hidden_def (_hurd_exception2signal)