diff options
Diffstat (limited to 'hurd/hurdlock.c')
| -rw-r--r-- | hurd/hurdlock.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hurd/hurdlock.c b/hurd/hurdlock.c index 374e4d107a..c771662e84 100644 --- a/hurd/hurdlock.c +++ b/hurd/hurdlock.c @@ -99,6 +99,7 @@ __lll_abstimed_lock (void *ptr, return ETIMEDOUT; } } +libc_hidden_def (__lll_abstimed_lock) /* Robust locks. */ @@ -157,6 +158,7 @@ __lll_robust_lock (void *ptr, int flags) } } } +libc_hidden_def (__lll_robust_lock) int __lll_robust_abstimed_lock (void *ptr, @@ -206,6 +208,7 @@ __lll_robust_abstimed_lock (void *ptr, } } } +libc_hidden_def (__lll_robust_abstimed_lock) int __lll_robust_trylock (void *ptr) @@ -225,6 +228,7 @@ __lll_robust_trylock (void *ptr) return EBUSY; } +libc_hidden_def (__lll_robust_trylock) void __lll_robust_unlock (void *ptr, int flags) @@ -241,3 +245,5 @@ __lll_robust_unlock (void *ptr, int flags) break; } } + +libc_hidden_def (__lll_robust_unlock) |
