diff options
Diffstat (limited to 'devel/linuxthreads')
-rw-r--r-- | devel/linuxthreads/files/uthread_file.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/devel/linuxthreads/files/uthread_file.c b/devel/linuxthreads/files/uthread_file.c index 8a64d869c6b9..596e7f9a2eaa 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 |