Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-2-0]: src/sys/arch/cobalt/cobalt Pullup rev 1.51 (requested by ts...



details:   https://anonhg.NetBSD.org/src/rev/b82d99bd75e8
branches:  netbsd-2-0
changeset: 560378:b82d99bd75e8
user:      jmc <jmc%NetBSD.org@localhost>
date:      Sun Apr 11 04:01:33 2004 +0000

description:
Pullup rev 1.51 (requested by tsutsui in ticket #120)

Tidy up messages for total/avail memory.

diffstat:

 sys/arch/cobalt/cobalt/machdep.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 0759fd8b2a75 -r b82d99bd75e8 sys/arch/cobalt/cobalt/machdep.c
--- a/sys/arch/cobalt/cobalt/machdep.c  Sun Apr 11 04:00:48 2004 +0000
+++ b/sys/arch/cobalt/cobalt/machdep.c  Sun Apr 11 04:01:33 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.50 2004/01/07 12:43:43 cdi Exp $ */
+/*     $NetBSD: machdep.c,v 1.50.2.1 2004/04/11 04:01:33 jmc Exp $     */
 
 /*
  * Copyright (c) 2000 Soren S. Jorvang.  All rights reserved.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.50 2004/01/07 12:43:43 cdi Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.50.2.1 2004/04/11 04:01:33 jmc Exp $");
 
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
@@ -272,7 +272,7 @@
         */
        printf(version);
        format_bytes(pbuf, sizeof(pbuf), ctob(physmem));
-       printf("%s memory", pbuf);
+       printf("total memory = %s\n", pbuf);
 
        minaddr = 0;
        /*
@@ -294,7 +294,7 @@
         */
 
        format_bytes(pbuf, sizeof(pbuf), ptoa(uvmexp.free));
-       printf(", %s free", pbuf);
+       printf("avail memory = %s\n", pbuf);
 }
 
 int    waittime = -1;



Home | Main Index | Thread Index | Old Index