aboutsummaryrefslogtreecommitdiff
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
parent7d1c6de8b7533751e78f801cf4319e0fc10e3d29 (diff)
Notes
-rw-r--r--lib/libc_r/uthread/uthread_accept.c2
-rw-r--r--lib/libc_r/uthread/uthread_aio_suspend.c2
-rw-r--r--lib/libc_r/uthread/uthread_bind.c2
-rw-r--r--lib/libc_r/uthread/uthread_connect.c2
-rw-r--r--lib/libc_r/uthread/uthread_dup.c2
-rw-r--r--lib/libc_r/uthread/uthread_dup2.c2
-rw-r--r--lib/libc_r/uthread/uthread_execve.c2
-rw-r--r--lib/libc_r/uthread/uthread_exit.c2
-rw-r--r--lib/libc_r/uthread/uthread_fchflags.c2
-rw-r--r--lib/libc_r/uthread/uthread_fchmod.c2
-rw-r--r--lib/libc_r/uthread/uthread_fchown.c2
-rw-r--r--lib/libc_r/uthread/uthread_flock.c2
-rw-r--r--lib/libc_r/uthread/uthread_fork.c2
-rw-r--r--lib/libc_r/uthread/uthread_fstat.c2
-rw-r--r--lib/libc_r/uthread/uthread_fstatfs.c2
-rw-r--r--lib/libc_r/uthread/uthread_getdirentries.c2
-rw-r--r--lib/libc_r/uthread/uthread_getpeername.c2
-rw-r--r--lib/libc_r/uthread/uthread_getsockname.c2
-rw-r--r--lib/libc_r/uthread/uthread_getsockopt.c2
-rw-r--r--lib/libc_r/uthread/uthread_ioctl.c2
-rw-r--r--lib/libc_r/uthread/uthread_listen.c2
-rw-r--r--lib/libc_r/uthread/uthread_pipe.c2
-rw-r--r--lib/libc_r/uthread/uthread_poll.c2
-rw-r--r--lib/libc_r/uthread/uthread_readv.c2
-rw-r--r--lib/libc_r/uthread/uthread_recvfrom.c2
-rw-r--r--lib/libc_r/uthread/uthread_recvmsg.c2
-rw-r--r--lib/libc_r/uthread/uthread_select.c2
-rw-r--r--lib/libc_r/uthread/uthread_sendmsg.c2
-rw-r--r--lib/libc_r/uthread/uthread_sendto.c2
-rw-r--r--lib/libc_r/uthread/uthread_setsockopt.c2
-rw-r--r--lib/libc_r/uthread/uthread_shutdown.c2
-rw-r--r--lib/libc_r/uthread/uthread_sigaction.c2
-rw-r--r--lib/libc_r/uthread/uthread_sigpending.c2
-rw-r--r--lib/libc_r/uthread/uthread_sigprocmask.c2
-rw-r--r--lib/libc_r/uthread/uthread_socket.c2
-rw-r--r--lib/libc_r/uthread/uthread_socketpair.c2
-rw-r--r--lib/libc_r/uthread/uthread_wait4.c2
-rw-r--r--lib/libc_r/uthread/uthread_writev.c2
-rw-r--r--lib/libkse/thread/thr_aio_suspend.c2
-rw-r--r--lib/libkse/thread/thr_exit.c2
-rw-r--r--lib/libkse/thread/thr_fork.c2
-rw-r--r--lib/libkse/thread/thr_poll.c2
-rw-r--r--lib/libkse/thread/thr_readv.c2
-rw-r--r--lib/libkse/thread/thr_select.c2
-rw-r--r--lib/libkse/thread/thr_sigaction.c2
-rw-r--r--lib/libkse/thread/thr_sigpending.c2
-rw-r--r--lib/libkse/thread/thr_sigprocmask.c2
-rw-r--r--lib/libkse/thread/thr_wait4.c2
-rw-r--r--lib/libkse/thread/thr_writev.c2
-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
60 files changed, 60 insertions, 60 deletions
diff --git a/lib/libc_r/uthread/uthread_accept.c b/lib/libc_r/uthread/uthread_accept.c
index 3fc481c65bbf..12abd30735bb 100644
--- a/lib/libc_r/uthread/uthread_accept.c
+++ b/lib/libc_r/uthread/uthread_accept.c
@@ -107,5 +107,5 @@ _accept(int fd, struct sockaddr * name, socklen_t *namelen)
return (ret);
}
-__weak_reference(_accept, accept);
+__strong_reference(_accept, accept);
#endif
diff --git a/lib/libc_r/uthread/uthread_aio_suspend.c b/lib/libc_r/uthread/uthread_aio_suspend.c
index 3bc373a16c7c..5940282fe0a3 100644
--- a/lib/libc_r/uthread/uthread_aio_suspend.c
+++ b/lib/libc_r/uthread/uthread_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/libc_r/uthread/uthread_bind.c b/lib/libc_r/uthread/uthread_bind.c
index cf9b0744cc51..0a455c076f73 100644
--- a/lib/libc_r/uthread/uthread_bind.c
+++ b/lib/libc_r/uthread/uthread_bind.c
@@ -49,5 +49,5 @@ _bind(int fd, const struct sockaddr * name, socklen_t namelen)
return (ret);
}
-__weak_reference(_bind, bind);
+__strong_reference(_bind, bind);
#endif
diff --git a/lib/libc_r/uthread/uthread_connect.c b/lib/libc_r/uthread/uthread_connect.c
index 4e3ed5ccd7c4..b900618a34a4 100644
--- a/lib/libc_r/uthread/uthread_connect.c
+++ b/lib/libc_r/uthread/uthread_connect.c
@@ -76,5 +76,5 @@ _connect(int fd, const struct sockaddr * name, socklen_t namelen)
return (ret);
}
-__weak_reference(_connect, connect);
+__strong_reference(_connect, connect);
#endif
diff --git a/lib/libc_r/uthread/uthread_dup.c b/lib/libc_r/uthread/uthread_dup.c
index 15d8c1945c13..30af80b00208 100644
--- a/lib/libc_r/uthread/uthread_dup.c
+++ b/lib/libc_r/uthread/uthread_dup.c
@@ -68,5 +68,5 @@ _dup(int fd)
return (ret);
}
-__weak_reference(_dup, dup);
+__strong_reference(_dup, dup);
#endif
diff --git a/lib/libc_r/uthread/uthread_dup2.c b/lib/libc_r/uthread/uthread_dup2.c
index ccf0e559705b..b1e8b5e2879b 100644
--- a/lib/libc_r/uthread/uthread_dup2.c
+++ b/lib/libc_r/uthread/uthread_dup2.c
@@ -84,5 +84,5 @@ _dup2(int fd, int newfd)
return (ret);
}
-__weak_reference(_dup2, dup2);
+__strong_reference(_dup2, dup2);
#endif
diff --git a/lib/libc_r/uthread/uthread_execve.c b/lib/libc_r/uthread/uthread_execve.c
index 8aeb24c0769a..37d6e2cfe640 100644
--- a/lib/libc_r/uthread/uthread_execve.c
+++ b/lib/libc_r/uthread/uthread_execve.c
@@ -111,5 +111,5 @@ _execve(const char *name, char *const * argv, char *const * envp)
return (ret);
}
-__weak_reference(_execve, execve);
+__strong_reference(_execve, execve);
#endif
diff --git a/lib/libc_r/uthread/uthread_exit.c b/lib/libc_r/uthread/uthread_exit.c
index 22e2ce8ebb91..0d22638fd7fc 100644
--- a/lib/libc_r/uthread/uthread_exit.c
+++ b/lib/libc_r/uthread/uthread_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/libc_r/uthread/uthread_fchflags.c b/lib/libc_r/uthread/uthread_fchflags.c
index ef33d86e33bc..0cd37e3661b9 100644
--- a/lib/libc_r/uthread/uthread_fchflags.c
+++ b/lib/libc_r/uthread/uthread_fchflags.c
@@ -23,5 +23,5 @@ _fchflags(int fd, u_long flags)
return (ret);
}
-__weak_reference(_fchflags, fchflags);
+__strong_reference(_fchflags, fchflags);
#endif
diff --git a/lib/libc_r/uthread/uthread_fchmod.c b/lib/libc_r/uthread/uthread_fchmod.c
index f57a9ea447cd..b9a5224d4116 100644
--- a/lib/libc_r/uthread/uthread_fchmod.c
+++ b/lib/libc_r/uthread/uthread_fchmod.c
@@ -49,5 +49,5 @@ _fchmod(int fd, mode_t mode)
return (ret);
}
-__weak_reference(_fchmod, fchmod);
+__strong_reference(_fchmod, fchmod);
#endif
diff --git a/lib/libc_r/uthread/uthread_fchown.c b/lib/libc_r/uthread/uthread_fchown.c
index 98fae7310840..06bfbcb54437 100644
--- a/lib/libc_r/uthread/uthread_fchown.c
+++ b/lib/libc_r/uthread/uthread_fchown.c
@@ -50,5 +50,5 @@ _fchown(int fd, uid_t owner, gid_t group)
return (ret);
}
-__weak_reference(_fchown, fchown);
+__strong_reference(_fchown, fchown);
#endif
diff --git a/lib/libc_r/uthread/uthread_flock.c b/lib/libc_r/uthread/uthread_flock.c
index 56d6fbcae00c..3a4df6c3e471 100644
--- a/lib/libc_r/uthread/uthread_flock.c
+++ b/lib/libc_r/uthread/uthread_flock.c
@@ -48,5 +48,5 @@ _flock(int fd, int operation)
return (ret);
}
-__weak_reference(_flock, flock);
+__strong_reference(_flock, flock);
#endif
diff --git a/lib/libc_r/uthread/uthread_fork.c b/lib/libc_r/uthread/uthread_fork.c
index 88f1c435d9cb..a8e85d86e18f 100644
--- a/lib/libc_r/uthread/uthread_fork.c
+++ b/lib/libc_r/uthread/uthread_fork.c
@@ -221,5 +221,5 @@ _fork(void)
return (ret);
}
-__weak_reference(_fork, fork);
+__strong_reference(_fork, fork);
#endif
diff --git a/lib/libc_r/uthread/uthread_fstat.c b/lib/libc_r/uthread/uthread_fstat.c
index 8df1f1affdb5..7fc64e4e1256 100644
--- a/lib/libc_r/uthread/uthread_fstat.c
+++ b/lib/libc_r/uthread/uthread_fstat.c
@@ -56,5 +56,5 @@ _fstat(int fd, struct stat * buf)
return (ret);
}
-__weak_reference(_fstat, fstat);
+__strong_reference(_fstat, fstat);
#endif
diff --git a/lib/libc_r/uthread/uthread_fstatfs.c b/lib/libc_r/uthread/uthread_fstatfs.c
index 0962cbdd1ed6..eac447a809e4 100644
--- a/lib/libc_r/uthread/uthread_fstatfs.c
+++ b/lib/libc_r/uthread/uthread_fstatfs.c
@@ -56,5 +56,5 @@ _fstatfs(int fd, struct statfs * buf)
return (ret);
}
-__weak_reference(_fstatfs, fstatfs);
+__strong_reference(_fstatfs, fstatfs);
#endif
diff --git a/lib/libc_r/uthread/uthread_getdirentries.c b/lib/libc_r/uthread/uthread_getdirentries.c
index c1a2edc222f9..3cd5450cabdf 100644
--- a/lib/libc_r/uthread/uthread_getdirentries.c
+++ b/lib/libc_r/uthread/uthread_getdirentries.c
@@ -49,5 +49,5 @@ _getdirentries(int fd, char *buf, int nbytes, long *basep)
return (ret);
}
-__weak_reference(_getdirentries, getdirentries);
+__strong_reference(_getdirentries, getdirentries);
#endif
diff --git a/lib/libc_r/uthread/uthread_getpeername.c b/lib/libc_r/uthread/uthread_getpeername.c
index afc2f3c7375c..b258836cb8eb 100644
--- a/lib/libc_r/uthread/uthread_getpeername.c
+++ b/lib/libc_r/uthread/uthread_getpeername.c
@@ -49,5 +49,5 @@ _getpeername(int fd, struct sockaddr * peer, socklen_t *paddrlen)
return ret;
}
-__weak_reference(_getpeername, getpeername);
+__strong_reference(_getpeername, getpeername);
#endif
diff --git a/lib/libc_r/uthread/uthread_getsockname.c b/lib/libc_r/uthread/uthread_getsockname.c
index e8816c7f7767..f4d6420dc208 100644
--- a/lib/libc_r/uthread/uthread_getsockname.c
+++ b/lib/libc_r/uthread/uthread_getsockname.c
@@ -49,5 +49,5 @@ _getsockname(int s, struct sockaddr * name, socklen_t *namelen)
return ret;
}
-__weak_reference(_getsockname, getsockname);
+__strong_reference(_getsockname, getsockname);
#endif
diff --git a/lib/libc_r/uthread/uthread_getsockopt.c b/lib/libc_r/uthread/uthread_getsockopt.c
index 45a083481ac1..3222dbd9f508 100644
--- a/lib/libc_r/uthread/uthread_getsockopt.c
+++ b/lib/libc_r/uthread/uthread_getsockopt.c
@@ -50,5 +50,5 @@ _getsockopt(int fd, int level, int optname, void *optval, socklen_t
return ret;
}
-__weak_reference(_getsockopt, getsockopt);
+__strong_reference(_getsockopt, getsockopt);
#endif
diff --git a/lib/libc_r/uthread/uthread_ioctl.c b/lib/libc_r/uthread/uthread_ioctl.c
index 0a3d14eb5345..e72615a80115 100644
--- a/lib/libc_r/uthread/uthread_ioctl.c
+++ b/lib/libc_r/uthread/uthread_ioctl.c
@@ -77,5 +77,5 @@ _ioctl(int fd, unsigned long request,...)
return (ret);
}
-__weak_reference(_ioctl, ioctl);
+__strong_reference(_ioctl, ioctl);
#endif
diff --git a/lib/libc_r/uthread/uthread_listen.c b/lib/libc_r/uthread/uthread_listen.c
index 1632b609e4d5..14a6e6d17017 100644
--- a/lib/libc_r/uthread/uthread_listen.c
+++ b/lib/libc_r/uthread/uthread_listen.c
@@ -49,5 +49,5 @@ _listen(int fd, int backlog)
return (ret);
}
-__weak_reference(_listen, listen);
+__strong_reference(_listen, listen);
#endif
diff --git a/lib/libc_r/uthread/uthread_pipe.c b/lib/libc_r/uthread/uthread_pipe.c
index 770384c3ceb0..9767742945e6 100644
--- a/lib/libc_r/uthread/uthread_pipe.c
+++ b/lib/libc_r/uthread/uthread_pipe.c
@@ -52,5 +52,5 @@ _pipe(int fds[2])
return (ret);
}
-__weak_reference(_pipe, pipe);
+__strong_reference(_pipe, pipe);
#endif
diff --git a/lib/libc_r/uthread/uthread_poll.c b/lib/libc_r/uthread/uthread_poll.c
index d395250dcae9..3717273da084 100644
--- a/lib/libc_r/uthread/uthread_poll.c
+++ b/lib/libc_r/uthread/uthread_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/libc_r/uthread/uthread_readv.c b/lib/libc_r/uthread/uthread_readv.c
index 2c66a98cfcd7..d8e02c0a3a05 100644
--- a/lib/libc_r/uthread/uthread_readv.c
+++ b/lib/libc_r/uthread/uthread_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/libc_r/uthread/uthread_recvfrom.c b/lib/libc_r/uthread/uthread_recvfrom.c
index ed761cab4cef..8fcf7a67e560 100644
--- a/lib/libc_r/uthread/uthread_recvfrom.c
+++ b/lib/libc_r/uthread/uthread_recvfrom.c
@@ -72,5 +72,5 @@ _recvfrom(int fd, void *buf, size_t len, int flags, struct sockaddr * from,
return (ret);
}
-__weak_reference(_recvfrom, recvfrom);
+__strong_reference(_recvfrom, recvfrom);
#endif
diff --git a/lib/libc_r/uthread/uthread_recvmsg.c b/lib/libc_r/uthread/uthread_recvmsg.c
index cbad5f5315f3..da15d9935e5f 100644
--- a/lib/libc_r/uthread/uthread_recvmsg.c
+++ b/lib/libc_r/uthread/uthread_recvmsg.c
@@ -71,5 +71,5 @@ _recvmsg(int fd, struct msghdr *msg, int flags)
return (ret);
}
-__weak_reference(_recvmsg, recvmsg);
+__strong_reference(_recvmsg, recvmsg);
#endif
diff --git a/lib/libc_r/uthread/uthread_select.c b/lib/libc_r/uthread/uthread_select.c
index d0e61e234676..0a7c0d405c22 100644
--- a/lib/libc_r/uthread/uthread_select.c
+++ b/lib/libc_r/uthread/uthread_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/libc_r/uthread/uthread_sendmsg.c b/lib/libc_r/uthread/uthread_sendmsg.c
index c5152698cc1b..13da2ebcf6f9 100644
--- a/lib/libc_r/uthread/uthread_sendmsg.c
+++ b/lib/libc_r/uthread/uthread_sendmsg.c
@@ -70,5 +70,5 @@ _sendmsg(int fd, const struct msghdr *msg, int flags)
return (ret);
}
-__weak_reference(_sendmsg, sendmsg);
+__strong_reference(_sendmsg, sendmsg);
#endif
diff --git a/lib/libc_r/uthread/uthread_sendto.c b/lib/libc_r/uthread/uthread_sendto.c
index 6c1df4892fc8..f830c5a90f74 100644
--- a/lib/libc_r/uthread/uthread_sendto.c
+++ b/lib/libc_r/uthread/uthread_sendto.c
@@ -71,5 +71,5 @@ _sendto(int fd, const void *msg, size_t len, int flags, const struct
return (ret);
}
-__weak_reference(_sendto, sendto);
+__strong_reference(_sendto, sendto);
#endif
diff --git a/lib/libc_r/uthread/uthread_setsockopt.c b/lib/libc_r/uthread/uthread_setsockopt.c
index fe0a55eb8fa2..f50a70870763 100644
--- a/lib/libc_r/uthread/uthread_setsockopt.c
+++ b/lib/libc_r/uthread/uthread_setsockopt.c
@@ -50,5 +50,5 @@ _setsockopt(int fd, int level, int optname, const void *optval, socklen_t
return ret;
}
-__weak_reference(_setsockopt, setsockopt);
+__strong_reference(_setsockopt, setsockopt);
#endif
diff --git a/lib/libc_r/uthread/uthread_shutdown.c b/lib/libc_r/uthread/uthread_shutdown.c
index 8ce4d6db25bf..c4b08ff723bc 100644
--- a/lib/libc_r/uthread/uthread_shutdown.c
+++ b/lib/libc_r/uthread/uthread_shutdown.c
@@ -70,5 +70,5 @@ _shutdown(int fd, int how)
return (ret);
}
-__weak_reference(_shutdown, shutdown);
+__strong_reference(_shutdown, shutdown);
#endif
diff --git a/lib/libc_r/uthread/uthread_sigaction.c b/lib/libc_r/uthread/uthread_sigaction.c
index e0aa523bb4f7..319999bf3047 100644
--- a/lib/libc_r/uthread/uthread_sigaction.c
+++ b/lib/libc_r/uthread/uthread_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/libc_r/uthread/uthread_sigpending.c b/lib/libc_r/uthread/uthread_sigpending.c
index a630f0c18e6d..a118347ca974 100644
--- a/lib/libc_r/uthread/uthread_sigpending.c
+++ b/lib/libc_r/uthread/uthread_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/libc_r/uthread/uthread_sigprocmask.c b/lib/libc_r/uthread/uthread_sigprocmask.c
index b10089c63f65..6addb4a948e9 100644
--- a/lib/libc_r/uthread/uthread_sigprocmask.c
+++ b/lib/libc_r/uthread/uthread_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/libc_r/uthread/uthread_socket.c b/lib/libc_r/uthread/uthread_socket.c
index d1fe141da1bc..5cd8f7566e26 100644
--- a/lib/libc_r/uthread/uthread_socket.c
+++ b/lib/libc_r/uthread/uthread_socket.c
@@ -56,5 +56,5 @@ _socket(int af, int type, int protocol)
return (fd);
}
-__weak_reference(_socket, socket);
+__strong_reference(_socket, socket);
#endif
diff --git a/lib/libc_r/uthread/uthread_socketpair.c b/lib/libc_r/uthread/uthread_socketpair.c
index 023bfa9206db..f54256dfc414 100644
--- a/lib/libc_r/uthread/uthread_socketpair.c
+++ b/lib/libc_r/uthread/uthread_socketpair.c
@@ -54,5 +54,5 @@ _socketpair(int af, int type, int protocol, int pair[2])
return (ret);
}
-__weak_reference(_socketpair, socketpair);
+__strong_reference(_socketpair, socketpair);
#endif
diff --git a/lib/libc_r/uthread/uthread_wait4.c b/lib/libc_r/uthread/uthread_wait4.c
index 90eb0ab5ff5b..083c230ec88c 100644
--- a/lib/libc_r/uthread/uthread_wait4.c
+++ b/lib/libc_r/uthread/uthread_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/libc_r/uthread/uthread_writev.c b/lib/libc_r/uthread/uthread_writev.c
index 7c5fffeaf9a9..5f3146887765 100644
--- a/lib/libc_r/uthread/uthread_writev.c
+++ b/lib/libc_r/uthread/uthread_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
diff --git a/lib/libkse/thread/thr_aio_suspend.c b/lib/libkse/thread/thr_aio_suspend.c
index 3bc373a16c7c..5940282fe0a3 100644
--- a/lib/libkse/thread/thr_aio_suspend.c
+++ b/lib/libkse/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/libkse/thread/thr_exit.c b/lib/libkse/thread/thr_exit.c
index 22e2ce8ebb91..0d22638fd7fc 100644
--- a/lib/libkse/thread/thr_exit.c
+++ b/lib/libkse/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/libkse/thread/thr_fork.c b/lib/libkse/thread/thr_fork.c
index 88f1c435d9cb..a8e85d86e18f 100644
--- a/lib/libkse/thread/thr_fork.c
+++ b/lib/libkse/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/libkse/thread/thr_poll.c b/lib/libkse/thread/thr_poll.c
index d395250dcae9..3717273da084 100644
--- a/lib/libkse/thread/thr_poll.c
+++ b/lib/libkse/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/libkse/thread/thr_readv.c b/lib/libkse/thread/thr_readv.c
index 2c66a98cfcd7..d8e02c0a3a05 100644
--- a/lib/libkse/thread/thr_readv.c
+++ b/lib/libkse/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/libkse/thread/thr_select.c b/lib/libkse/thread/thr_select.c
index d0e61e234676..0a7c0d405c22 100644
--- a/lib/libkse/thread/thr_select.c
+++ b/lib/libkse/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/libkse/thread/thr_sigaction.c b/lib/libkse/thread/thr_sigaction.c
index e0aa523bb4f7..319999bf3047 100644
--- a/lib/libkse/thread/thr_sigaction.c
+++ b/lib/libkse/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/libkse/thread/thr_sigpending.c b/lib/libkse/thread/thr_sigpending.c
index a630f0c18e6d..a118347ca974 100644
--- a/lib/libkse/thread/thr_sigpending.c
+++ b/lib/libkse/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/libkse/thread/thr_sigprocmask.c b/lib/libkse/thread/thr_sigprocmask.c
index b10089c63f65..6addb4a948e9 100644
--- a/lib/libkse/thread/thr_sigprocmask.c
+++ b/lib/libkse/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/libkse/thread/thr_wait4.c b/lib/libkse/thread/thr_wait4.c
index 90eb0ab5ff5b..083c230ec88c 100644
--- a/lib/libkse/thread/thr_wait4.c
+++ b/lib/libkse/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/libkse/thread/thr_writev.c b/lib/libkse/thread/thr_writev.c
index 7c5fffeaf9a9..5f3146887765 100644
--- a/lib/libkse/thread/thr_writev.c
+++ b/lib/libkse/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
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