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/netatm | |
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/netatm')
-rw-r--r-- | sys/netatm/atm_aal5.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/netatm/atm_aal5.c b/sys/netatm/atm_aal5.c index 2eefd07..ab6a95a 100644 --- a/sys/netatm/atm_aal5.c +++ b/sys/netatm/atm_aal5.c @@ -36,10 +36,14 @@ */ #include <sys/param.h> -#include <sys/systm.h> +#include <sys/lock.h> #include <sys/protosw.h> +#include <sys/signalvar.h> #include <sys/socket.h> #include <sys/socketvar.h> +#include <sys/stat.h> +#include <sys/sx.h> +#include <sys/systm.h> #include <net/if.h> #include <netatm/port.h> #include <netatm/queue.h> @@ -51,7 +55,6 @@ #include <netatm/atm_stack.h> #include <netatm/atm_pcb.h> #include <netatm/atm_var.h> -#include <sys/stat.h> #ifndef lint __RCSID("@(#) $FreeBSD$"); |