Deleted Added
sdiff udiff text old ( 20578 ) new ( 20641 )
full compact
1/*-
2 * Copyright (c) 1992 Terrence R. Lambert.
3 * Copyright (c) 1982, 1987, 1990 The Regents of the University of California.
4 * All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * William Jolitz.
8 *

--- 21 unchanged lines hidden (view full) ---

30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 *
37 * from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
38 * $Id: machdep.c,v 1.221 1996/12/17 04:19:41 davidg Exp $
39 */
40
41#include "npx.h"
42#include "opt_sysvipc.h"
43#include "opt_ddb.h"
44#include "opt_bounce.h"
45#include "opt_machdep.h"
46#include "opt_perfmon.h"

--- 337 unchanged lines hidden (view full) ---

384 printf("avail memory = %d (%dK bytes)\n", ptoa(cnt.v_free_count),
385 ptoa(cnt.v_free_count) / 1024);
386
387 /*
388 * Set up buffers, so they can be used to read disk labels.
389 */
390 bufinit();
391 vm_pager_bufferinit();
392}
393
394int
395register_netisr(num, handler)
396 int num;
397 netisr_t *handler;
398{
399

--- 1105 unchanged lines hidden ---