diff options
author | tanimura <tanimura@FreeBSD.org> | 2002-04-30 01:54:54 +0000 |
---|---|---|
committer | tanimura <tanimura@FreeBSD.org> | 2002-04-30 01:54:54 +0000 |
commit | 89ec521d918cc9582731bc57c7d9d39010f3ccba (patch) | |
tree | 949babd3de74c52d345786e2c0f418722c5d6351 /sys/fs | |
parent | c52db1bfdfb3a9e4065f735384e8e23dd29a14c0 (diff) | |
download | FreeBSD-src-89ec521d918cc9582731bc57c7d9d39010f3ccba.zip FreeBSD-src-89ec521d918cc9582731bc57c7d9d39010f3ccba.tar.gz |
Revert the change of #includes in sys/filedesc.h and sys/socketvar.h.
Requested by: bde
Since locking sigio_lock is usually followed by calling pgsigio(),
move the declaration of sigio_lock and the definitions of SIGIO_*() to
sys/signalvar.h.
While I am here, sort include files alphabetically, where possible.
Diffstat (limited to 'sys/fs')
-rw-r--r-- | sys/fs/fifofs/fifo_vnops.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/sys/fs/fifofs/fifo_vnops.c b/sys/fs/fifofs/fifo_vnops.c index 6765d0c..f2f7aae 100644 --- a/sys/fs/fifofs/fifo_vnops.c +++ b/sys/fs/fifofs/fifo_vnops.c @@ -35,22 +35,24 @@ */ #include <sys/param.h> -#include <sys/systm.h> -#include <sys/unistd.h> +#include <sys/event.h> +#include <sys/filio.h> +#include <sys/fcntl.h> +#include <sys/file.h> #include <sys/kernel.h> #include <sys/lock.h> #include <sys/mutex.h> #include <sys/malloc.h> -#include <sys/vnode.h> +#include <sys/poll.h> #include <sys/proc.h> /* XXXKSE */ +#include <sys/signalvar.h> #include <sys/socket.h> #include <sys/socketvar.h> -#include <sys/filio.h> -#include <sys/fcntl.h> -#include <sys/file.h> -#include <sys/event.h> -#include <sys/poll.h> +#include <sys/sx.h> +#include <sys/systm.h> #include <sys/un.h> +#include <sys/unistd.h> +#include <sys/vnode.h> #include <fs/fifofs/fifo.h> /* |