aboutsummaryrefslogtreecommitdiff
path: root/sys/netsmb
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2003-01-01 01:56:19 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2003-01-01 01:56:19 +0000
commit13438f6823e991fe0c5616bc3a6f766a0a86c210 (patch)
treeebb22b0d8030959ee26f9f429f2729208d65ac89 /sys/netsmb
parent4f5a0588eee9daf5497a6c50536f0b3ebbc8b88a (diff)
downloadsrc-13438f6823e991fe0c5616bc3a6f766a0a86c210.tar.gz
src-13438f6823e991fe0c5616bc3a6f766a0a86c210.zip
When compiling the kernel do not implicitly include filedesc.h from proc.h,
this was causing filedesc work to be very painful. In order to make this work split out sigio definitions to thier own header (sigio.h) which is included from proc.h for the time being.
Notes
Notes: svn path=/head/; revision=108524
Diffstat (limited to 'sys/netsmb')
-rw-r--r--sys/netsmb/smb_dev.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/netsmb/smb_dev.c b/sys/netsmb/smb_dev.c
index f020b2c8141c..9a132aad2c8c 100644
--- a/sys/netsmb/smb_dev.c
+++ b/sys/netsmb/smb_dev.c
@@ -40,6 +40,7 @@
#include <sys/lock.h>
#include <sys/malloc.h>
#include <sys/file.h> /* Must come after sys/malloc.h */
+#include <sys/filedesc.h>
#include <sys/mbuf.h>
#include <sys/poll.h>
#include <sys/proc.h>