Add a few mbuf fields.

This commit is contained in:
mycroft 1996-07-03 13:10:46 +00:00
parent 8663d62627
commit b056ddef2a

View File

@ -1,4 +1,4 @@
/* $NetBSD: genassym.c,v 1.49 1996/05/03 19:42:07 christos Exp $ */
/* $NetBSD: genassym.c,v 1.50 1996/07/03 13:10:46 mycroft Exp $ */
/*-
* Copyright (c) 1995 Charles M. Hannum. All rights reserved.
@ -44,6 +44,7 @@
#include <sys/resourcevar.h>
#include <sys/device.h>
#include <sys/user.h>
#include <sys/mbuf.h>
#include <vm/vm.h>
@ -100,6 +101,10 @@ main()
def("P_SYSTEM", P_SYSTEM);
off("M_DATA", struct mbuf, m_data);
off("M_LEN", struct mbuf, m_len);
off("M_NEXT", struct mbuf, m_next);
off("V_TRAP", struct vmmeter, v_trap);
off("V_INTR", struct vmmeter, v_intr);