diff options
author | bde <bde@FreeBSD.org> | 1996-10-15 18:24:34 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1996-10-15 18:24:34 +0000 |
commit | 5beb18abc1bf4877517b42f429521cb88ccb29e3 (patch) | |
tree | 061607c4bb1e26c6e872e8b5cb517f3f8a22c52a /sys/alpha | |
parent | 968d31981412de02a78b448982fdfcd060a02050 (diff) | |
download | FreeBSD-src-5beb18abc1bf4877517b42f429521cb88ccb29e3.zip FreeBSD-src-5beb18abc1bf4877517b42f429521cb88ccb29e3.tar.gz |
Removed nested include of <sys/proc.h> from <vm/vm_object.h> and fixed
the one place that depended on it. wakeup() is now prototyped in
<sys/systm.h> so that it is normally visible.
Added nested include of <sys/queue.h> in <vm/vm_object.h>. The queue
macros are a more fundamental prerequisite for <vm/vm_object.h> than
the wakeup prototype and previously happened to be included by
namespace pollution from <sys/proc.h> or elsewhere.
Diffstat (limited to 'sys/alpha')
-rw-r--r-- | sys/alpha/linux/linux_sysvec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/alpha/linux/linux_sysvec.c b/sys/alpha/linux/linux_sysvec.c index f2c7ba6..aa9c2d6 100644 --- a/sys/alpha/linux/linux_sysvec.c +++ b/sys/alpha/linux/linux_sysvec.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_sysvec.c,v 1.6 1996/06/12 05:06:29 gpalmer Exp $ + * $Id: linux_sysvec.c,v 1.7 1996/06/18 05:15:53 dyson Exp $ */ /* XXX we use functions that might not exist. */ @@ -33,6 +33,7 @@ #include <sys/param.h> #include <sys/buf.h> +#include <sys/proc.h> #include <sys/systm.h> #include <sys/sysproto.h> #include <sys/sysent.h> |