patch-2.2.13 linux/arch/ppc/xmon/subr_prf.c
Next file: linux/arch/sparc/config.in
Previous file: linux/arch/ppc/pmac_defconfig
Back to the patch index
Back to the overall index
- Lines: 25
- Date:
Tue Oct 19 17:14:00 1999
- Orig file:
v2.2.12/linux/arch/ppc/xmon/subr_prf.c
- Orig date:
Tue Oct 19 17:10:36 1999
diff -u --recursive --new-file v2.2.12/linux/arch/ppc/xmon/subr_prf.c linux/arch/ppc/xmon/subr_prf.c
@@ -1,6 +1,7 @@
/*
- * Written by Cort Dougan to replace the version written by
- * Paul Mackerras that had copyright conflicts with Linux.
+ * Written by Cort Dougan to replace the version originally used
+ * by Paul Mackerras, which came from NetBSD and thus had copyright
+ * conflicts with Linux.
*
* This file makes liberal use of the standard linux utility
* routines to reduce the size of the binary. We assume we can
@@ -20,9 +21,11 @@
void
xmon_vfprintf(void *f, const char *fmt, va_list ap)
{
- char buf[2048];
- vsprintf( buf, fmt, ap );
- xmon_write( f, buf, strlen(buf) );
+ static char xmon_buf[2048];
+ int n;
+
+ n = vsprintf(xmon_buf, fmt, ap);
+ xmon_write(f, xmon_buf, n);
}
void
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)