aboutsummaryrefslogtreecommitdiffstats
path: root/devel/linuxthreads/files
diff options
context:
space:
mode:
authortegge <tegge@FreeBSD.org>2001-09-09 08:53:07 +0800
committertegge <tegge@FreeBSD.org>2001-09-09 08:53:07 +0800
commit0ef0aeff048e4bcea7667d8ff50c28f086aa6ffd (patch)
treefe6343b84b85805d112d9c7f719c01a091b09d6e /devel/linuxthreads/files
parentf3bd8bb6ed2d6163ea56d224bc23e1bfdd91b353 (diff)
downloadfreebsd-ports-graphics-0ef0aeff048e4bcea7667d8ff50c28f086aa6ffd.tar.gz
freebsd-ports-graphics-0ef0aeff048e4bcea7667d8ff50c28f086aa6ffd.tar.zst
freebsd-ports-graphics-0ef0aeff048e4bcea7667d8ff50c28f086aa6ffd.zip
Use libc version of _flockfile() and _funlockfile() on 5.0-CURRENT.
Diffstat (limited to 'devel/linuxthreads/files')
-rw-r--r--devel/linuxthreads/files/uthread_file.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/devel/linuxthreads/files/uthread_file.c b/devel/linuxthreads/files/uthread_file.c
index 8a64d869c6b..596e7f9a2ea 100644
--- a/devel/linuxthreads/files/uthread_file.c
+++ b/devel/linuxthreads/files/uthread_file.c
@@ -45,6 +45,8 @@
#include "spinlock.h"
#include "restart.h"
+#if __FreeBSD__ == 4
+
/*
* Weak symbols for externally visible functions in this file:
*/
@@ -396,3 +398,11 @@ void __fresetlockfiles()
}
_SPINUNLOCK(&hash_lock);
}
+
+#else
+
+void __fresetlockfiles()
+{
+ /* XXX: Should do something */
+}
+#endif