mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 20:40:05 +00:00
hurd: Add __libc_open and __libc_close
Needed by libpthread for sem_open and sem_close
This commit is contained in:
parent
6e411b42f8
commit
f26f0d766b
@ -153,6 +153,7 @@ libc {
|
||||
__lll_abstimed_lock; __lll_robust_lock;
|
||||
__lll_robust_abstimed_lock; __lll_robust_trylock;
|
||||
__lll_robust_unlock;
|
||||
__libc_open; __libc_close;
|
||||
|
||||
# Used by libpthread.
|
||||
_hurd_sigstate_set_global_rcv;
|
||||
|
@ -35,4 +35,5 @@ __close (int fd)
|
||||
return err ? __hurd_fail (err) : 0;
|
||||
}
|
||||
libc_hidden_def (__close)
|
||||
strong_alias (__close, __libc_close)
|
||||
weak_alias (__close, close)
|
||||
|
Loading…
Reference in New Issue
Block a user