change default output to -a format; ok tb
authorderaadt <deraadt@openbsd.org>
Thu, 10 Nov 2022 08:17:53 +0000 (08:17 +0000)
committerderaadt <deraadt@openbsd.org>
Thu, 10 Nov 2022 08:17:53 +0000 (08:17 +0000)
usr.sbin/procmap/procmap.1
usr.sbin/procmap/procmap.c

index 4e867df..858a3ce 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: procmap.1,v 1.25 2022/10/22 06:39:12 jmc Exp $
+.\"    $OpenBSD: procmap.1,v 1.26 2022/11/10 08:17:53 deraadt Exp $
 .\"    $NetBSD: pmap.1,v 1.6 2003/01/19 21:25:43 atatat Exp $
 .\"
 .\" Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -28,7 +28,7 @@
 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 .\" POSSIBILITY OF SUCH DAMAGE.
 .\"
-.Dd $Mdocdate: October 22 2022 $
+.Dd $Mdocdate: November 10 2022 $
 .Dt PROCMAP 1
 .Os
 .Sh NAME
@@ -82,7 +82,8 @@ information from the process's memory map.
 This output
 mode is an amalgam of the contents of the Solaris, Linux, and
 .Ox
-style output modes.
+style output modes, and attempts to maximize information displayed.
+This is the default output style.
 .It Fl D Ar number
 Enable various debug facilities.
 The
@@ -162,7 +163,6 @@ is optional.
 .It Fl s
 The Solaris style output format, modeled after the Solaris command
 .Dq pmap .
-This is the default output style.
 .It Fl v
 Verbose output.
 When used with
index e737990..076e6e9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: procmap.c,v 1.70 2022/10/07 15:22:10 deraadt Exp $ */
+/*     $OpenBSD: procmap.c,v 1.71 2022/11/10 08:17:53 deraadt Exp $ */
 /*     $NetBSD: pmap.c,v 1.1 2002/09/01 20:32:44 atatat Exp $ */
 
 /*
@@ -287,7 +287,7 @@ main(int argc, char *argv[])
        /* apply default */
        if (print_all + print_map + print_maps + print_solaris +
            print_ddb == 0)
-               print_solaris = 1;
+               print_all = 1;
 
        /* start by opening libkvm */
        kd = kvm_openfiles(kernel, kmem, NULL, O_RDONLY, errbuf);