summaryrefslogtreecommitdiff
path: root/src/thread
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2018-09-06 13:55:50 -0400
committerRich Felker <dalias@aerifal.cx>2018-09-12 14:34:28 -0400
commit10bbbbf5c63085b84d683c2d597ba482d6dd07d9 (patch)
treea8102ef6d0109f65cec6405ec76917675f5a359b /src/thread
parentb5dbf4d424efdbe54daa939aae80d69c4244c023 (diff)
downloadmusl-10bbbbf5c63085b84d683c2d597ba482d6dd07d9.tar.gz
make inadvertently exposed __pthread_{timed,try}join_np functions static
these exist for the sake of defining the corresponding weak public aliases (for C11 and POSIX namespace conformance reasons). they are not referenced by anything else in libc, so make them static.
Diffstat (limited to 'src/thread')
-rw-r--r--src/thread/pthread_join.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thread/pthread_join.c b/src/thread/pthread_join.c
index 18264da6..551c3675 100644
--- a/src/thread/pthread_join.c
+++ b/src/thread/pthread_join.c
@@ -5,7 +5,7 @@ int __munmap(void *, size_t);
void __pthread_testcancel(void);
int __pthread_setcancelstate(int, int *);
-int __pthread_timedjoin_np(pthread_t t, void **res, const struct timespec *at)
+static int __pthread_timedjoin_np(pthread_t t, void **res, const struct timespec *at)
{
int state, cs, r = 0;
__pthread_testcancel();
@@ -28,7 +28,7 @@ int __pthread_join(pthread_t t, void **res)
return __pthread_timedjoin_np(t, res, 0);
}
-int __pthread_tryjoin_np(pthread_t t, void **res)
+static int __pthread_tryjoin_np(pthread_t t, void **res)
{
return t->detach_state==DT_JOINABLE ? EBUSY : __pthread_join(t, res);
}