aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/filedesc.h
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2004-12-14 08:44:51 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2004-12-14 08:44:51 +0000
commit30abaa53df7735ba2bb05cc1696b8a0131253cc9 (patch)
treecbe8784aa751e1edd6446403ed39f45e11636a27 /sys/sys/filedesc.h
parent12b18fdab4d2d4b53c4d4f8e98aff038c1a08a0d (diff)
downloadsrc-30abaa53df7735ba2bb05cc1696b8a0131253cc9.tar.gz
src-30abaa53df7735ba2bb05cc1696b8a0131253cc9.zip
Make fdesc_mtx private to kern_descrip.c now that the flock has come home.
Notes
Notes: svn path=/head/; revision=138836
Diffstat (limited to 'sys/sys/filedesc.h')
-rw-r--r--sys/sys/filedesc.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/sys/filedesc.h b/sys/sys/filedesc.h
index 5726768210ea..581c332b3125 100644
--- a/sys/sys/filedesc.h
+++ b/sys/sys/filedesc.h
@@ -182,8 +182,6 @@ fget_locked(struct filedesc *fdp, int fd)
return (fd < 0 || fd >= fdp->fd_nfiles ? NULL : fdp->fd_ofiles[fd]);
}
-extern struct mtx fdesc_mtx;
-
#endif /* _KERNEL */
#endif /* !_SYS_FILEDESC_H_ */