summaryrefslogtreecommitdiffstats
path: root/lib/libkse
diff options
context:
space:
mode:
authordfr <dfr@FreeBSD.org>2008-05-30 14:47:42 +0000
committerdfr <dfr@FreeBSD.org>2008-05-30 14:47:42 +0000
commita6bd1d19554599fdc631dd9d8b1821656c5c440a (patch)
tree66233dd5fa491396f1de4954fa46d990ed6f6fd1 /lib/libkse
parent9a2047ba483ae2319d063ec4bd72a70e706bd7c1 (diff)
downloadFreeBSD-src-a6bd1d19554599fdc631dd9d8b1821656c5c440a.zip
FreeBSD-src-a6bd1d19554599fdc631dd9d8b1821656c5c440a.tar.gz
Call the fcntl compatiblity wrapper from the thread library fcntl wrappers
so that they get the benefit of the (limited) forward ABI compatibility. MFC after: 1 week
Diffstat (limited to 'lib/libkse')
-rw-r--r--lib/libkse/thread/thr_fcntl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libkse/thread/thr_fcntl.c b/lib/libkse/thread/thr_fcntl.c
index 113cd73..e739633 100644
--- a/lib/libkse/thread/thr_fcntl.c
+++ b/lib/libkse/thread/thr_fcntl.c
@@ -37,6 +37,7 @@
#include "thr_private.h"
int __fcntl(int fd, int cmd,...);
+extern int __fcntl_compat(int fd, int cmd,...);
__weak_reference(__fcntl, fcntl);
@@ -68,7 +69,7 @@ __fcntl(int fd, int cmd,...)
ret = __sys_fcntl(fd, cmd);
break;
default:
- ret = __sys_fcntl(fd, cmd, va_arg(ap, void *));
+ ret = __fcntl_compat(fd, cmd, va_arg(ap, void *));
}
va_end(ap);
OpenPOWER on IntegriCloud