summaryrefslogtreecommitdiff
path: root/lib/libpthread/thread
diff options
context:
space:
mode:
authorJason Evans <jasone@FreeBSD.org>2000-01-29 22:53:55 +0000
committerJason Evans <jasone@FreeBSD.org>2000-01-29 22:53:55 +0000
commitd77639f25f93730229a8a66ece20cdf65bf4df64 (patch)
treeeed2d850252cb635c60a8f2157bb4437d5ea54c1 /lib/libpthread/thread
parent7d1c6de8b7533751e78f801cf4319e0fc10e3d29 (diff)
Notes
Diffstat (limited to 'lib/libpthread/thread')
-rw-r--r--lib/libpthread/thread/thr_aio_suspend.c2
-rw-r--r--lib/libpthread/thread/thr_exit.c2
-rw-r--r--lib/libpthread/thread/thr_fork.c2
-rw-r--r--lib/libpthread/thread/thr_poll.c2
-rw-r--r--lib/libpthread/thread/thr_readv.c2
-rw-r--r--lib/libpthread/thread/thr_select.c2
-rw-r--r--lib/libpthread/thread/thr_sigaction.c2
-rw-r--r--lib/libpthread/thread/thr_sigpending.c2
-rw-r--r--lib/libpthread/thread/thr_sigprocmask.c2
-rw-r--r--lib/libpthread/thread/thr_wait4.c2
-rw-r--r--lib/libpthread/thread/thr_writev.c2
11 files changed, 11 insertions, 11 deletions
diff --git a/lib/libpthread/thread/thr_aio_suspend.c b/lib/libpthread/thread/thr_aio_suspend.c
index 3bc373a16c7c..5940282fe0a3 100644
--- a/lib/libpthread/thread/thr_aio_suspend.c
+++ b/lib/libpthread/thread/thr_aio_suspend.c
@@ -47,5 +47,5 @@ _aio_suspend(const struct aiocb * const iocbs[], int niocb, const struct
return ret;
}
-__weak_reference(_aio_suspend, aio_suspend);
+__strong_reference(_aio_suspend, aio_suspend);
#endif
diff --git a/lib/libpthread/thread/thr_exit.c b/lib/libpthread/thread/thr_exit.c
index 22e2ce8ebb91..0d22638fd7fc 100644
--- a/lib/libpthread/thread/thr_exit.c
+++ b/lib/libpthread/thread/thr_exit.c
@@ -77,7 +77,7 @@ void __exit(int status)
_thread_sys__exit(status);
}
-__weak_reference(__exit, _exit);
+__strong_reference(__exit, _exit);
void
_thread_exit(char *fname, int lineno, char *string)
diff --git a/lib/libpthread/thread/thr_fork.c b/lib/libpthread/thread/thr_fork.c
index 88f1c435d9cb..a8e85d86e18f 100644
--- a/lib/libpthread/thread/thr_fork.c
+++ b/lib/libpthread/thread/thr_fork.c
@@ -221,5 +221,5 @@ _fork(void)
return (ret);
}
-__weak_reference(_fork, fork);
+__strong_reference(_fork, fork);
#endif
diff --git a/lib/libpthread/thread/thr_poll.c b/lib/libpthread/thread/thr_poll.c
index d395250dcae9..3717273da084 100644
--- a/lib/libpthread/thread/thr_poll.c
+++ b/lib/libpthread/thread/thr_poll.c
@@ -97,5 +97,5 @@ _poll(struct pollfd *fds, unsigned int nfds, int timeout)
return (ret);
}
-__weak_reference(_poll, poll);
+__strong_reference(_poll, poll);
#endif
diff --git a/lib/libpthread/thread/thr_readv.c b/lib/libpthread/thread/thr_readv.c
index 2c66a98cfcd7..d8e02c0a3a05 100644
--- a/lib/libpthread/thread/thr_readv.c
+++ b/lib/libpthread/thread/thr_readv.c
@@ -91,5 +91,5 @@ _readv(int fd, const struct iovec * iov, int iovcnt)
return (ret);
}
-__weak_reference(_readv, readv);
+__strong_reference(_readv, readv);
#endif
diff --git a/lib/libpthread/thread/thr_select.c b/lib/libpthread/thread/thr_select.c
index d0e61e234676..0a7c0d405c22 100644
--- a/lib/libpthread/thread/thr_select.c
+++ b/lib/libpthread/thread/thr_select.c
@@ -204,5 +204,5 @@ _select(int numfds, fd_set * readfds, fd_set * writefds, fd_set * exceptfds,
return (ret);
}
-__weak_reference(_select, select);
+__strong_reference(_select, select);
#endif
diff --git a/lib/libpthread/thread/thr_sigaction.c b/lib/libpthread/thread/thr_sigaction.c
index e0aa523bb4f7..319999bf3047 100644
--- a/lib/libpthread/thread/thr_sigaction.c
+++ b/lib/libpthread/thread/thr_sigaction.c
@@ -106,5 +106,5 @@ _sigaction(int sig, const struct sigaction * act, struct sigaction * oact)
return (ret);
}
-__weak_reference(_sigaction, sigaction);
+__strong_reference(_sigaction, sigaction);
#endif
diff --git a/lib/libpthread/thread/thr_sigpending.c b/lib/libpthread/thread/thr_sigpending.c
index a630f0c18e6d..a118347ca974 100644
--- a/lib/libpthread/thread/thr_sigpending.c
+++ b/lib/libpthread/thread/thr_sigpending.c
@@ -54,5 +54,5 @@ _sigpending(sigset_t * set)
return (ret);
}
-__weak_reference(_sigpending, sigpending);
+__strong_reference(_sigpending, sigpending);
#endif
diff --git a/lib/libpthread/thread/thr_sigprocmask.c b/lib/libpthread/thread/thr_sigprocmask.c
index b10089c63f65..6addb4a948e9 100644
--- a/lib/libpthread/thread/thr_sigprocmask.c
+++ b/lib/libpthread/thread/thr_sigprocmask.c
@@ -90,5 +90,5 @@ _sigprocmask(int how, const sigset_t * set, sigset_t * oset)
return (ret);
}
-__weak_reference(_sigprocmask, sigprocmask);
+__strong_reference(_sigprocmask, sigprocmask);
#endif
diff --git a/lib/libpthread/thread/thr_wait4.c b/lib/libpthread/thread/thr_wait4.c
index 90eb0ab5ff5b..083c230ec88c 100644
--- a/lib/libpthread/thread/thr_wait4.c
+++ b/lib/libpthread/thread/thr_wait4.c
@@ -65,5 +65,5 @@ _wait4(pid_t pid, int *istat, int options, struct rusage * rusage)
return (ret);
}
-__weak_reference(_wait4, wait4);
+__strong_reference(_wait4, wait4);
#endif
diff --git a/lib/libpthread/thread/thr_writev.c b/lib/libpthread/thread/thr_writev.c
index 7c5fffeaf9a9..5f3146887765 100644
--- a/lib/libpthread/thread/thr_writev.c
+++ b/lib/libpthread/thread/thr_writev.c
@@ -201,5 +201,5 @@ _writev(int fd, const struct iovec * iov, int iovcnt)
return (ret);
}
-__weak_reference(_writev, writev);
+__strong_reference(_writev, writev);
#endif