diff options
author | deischen <deischen@FreeBSD.org> | 2006-02-27 22:10:59 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2006-02-27 22:10:59 +0000 |
commit | 97af57388060392fb35871f19f1206393d0f76bd (patch) | |
tree | 61ac8090008b10d8e34bd08d89b00f5fc6574e20 /lib/libc/rpc/clnt_simple.c | |
parent | 2a2559a103e853552bf162079b75f0af0f21e574 (diff) | |
download | FreeBSD-src-97af57388060392fb35871f19f1206393d0f76bd.zip FreeBSD-src-97af57388060392fb35871f19f1206393d0f76bd.tar.gz |
Staticize a couple of functions.
Remove a few unused locks.
Remove locks from application namespace.
Diffstat (limited to 'lib/libc/rpc/clnt_simple.c')
-rw-r--r-- | lib/libc/rpc/clnt_simple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/rpc/clnt_simple.c b/lib/libc/rpc/clnt_simple.c index ae9c87f..12b6679 100644 --- a/lib/libc/rpc/clnt_simple.c +++ b/lib/libc/rpc/clnt_simple.c @@ -56,6 +56,7 @@ __FBSDID("$FreeBSD$"); #include <fcntl.h> #include <unistd.h> #include "un-namespace.h" +#include "mt_misc.h" #ifndef MAXHOSTNAMELEN #define MAXHOSTNAMELEN 64 @@ -112,7 +113,6 @@ rpc_call(host, prognum, versnum, procnum, inproc, in, outproc, out, nettype) enum clnt_stat clnt_stat; struct timeval timeout, tottimeout; static thread_key_t rpc_call_key; - extern mutex_t tsd_lock; int main_thread = 1; if ((main_thread = thr_main())) { |