diff options
author | davidxu <davidxu@FreeBSD.org> | 2008-04-03 02:13:51 +0000 |
---|---|---|
committer | davidxu <davidxu@FreeBSD.org> | 2008-04-03 02:13:51 +0000 |
commit | 2d5bf7e6fcc6f61ce481cee5e334a7bd721e0b5c (patch) | |
tree | 67ab9a29de14f740ab378f38f8916a50c63b9efa | |
parent | 31df7a30d1f2a335b75558e72dc64a3cb82513b4 (diff) | |
download | FreeBSD-src-2d5bf7e6fcc6f61ce481cee5e334a7bd721e0b5c.zip FreeBSD-src-2d5bf7e6fcc6f61ce481cee5e334a7bd721e0b5c.tar.gz |
add __hidden suffix to _umtx_op_err, this eliminates PLT.
-rw-r--r-- | lib/libthr/thread/thr_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libthr/thread/thr_private.h b/lib/libthr/thread/thr_private.h index 4f61b19..4855b25 100644 --- a/lib/libthr/thread/thr_private.h +++ b/lib/libthr/thread/thr_private.h @@ -705,7 +705,7 @@ ssize_t __sys_write(int, const void *, size_t); void __sys_exit(int); #endif -int _umtx_op_err(void *, int op, u_long, void *, void *); +int _umtx_op_err(void *, int op, u_long, void *, void *) __hidden; static inline int _thr_isthreaded(void) |