New format modifier: `L' gives true `long' vs `l' or `legacy' long.

This commit is contained in:
ross 1999-05-31 06:53:45 +00:00
parent 6b3d12f44a
commit 66ffb4e4d6
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: db_examine.c,v 1.15 1999/04/12 20:38:21 pk Exp $ */
/* $NetBSD: db_examine.c,v 1.16 1999/05/31 06:53:45 ross Exp $ */
/*
* Mach Operating System
@ -106,6 +106,10 @@ db_examine(addr, fmt, count)
size = 4;
width = 12;
break;
case 'L': /* implementation maximum */
size = sizeof value;
width = 12 * (sizeof value / 4);
break;
case 'a': /* address */
db_printf("= 0x%lx\n", addr);
break;