svn commit: r358913 - stable/12/usr.bin/posixshmcontrol
Konstantin Belousov
kib at FreeBSD.org
Thu Mar 12 16:07:43 UTC 2020
Author: kib
Date: Thu Mar 12 16:07:41 2020
New Revision: 358913
URL: https://svnweb.freebsd.org/changeset/base/358913
Log:
MFC r358826:
posixshmcontrol: add an undocumented alias 'list' for the 'ls' command.
Modified:
stable/12/usr.bin/posixshmcontrol/posixshmcontrol.c
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/usr.bin/posixshmcontrol/posixshmcontrol.c
==============================================================================
--- stable/12/usr.bin/posixshmcontrol/posixshmcontrol.c Thu Mar 12 16:06:26 2020 (r358912)
+++ stable/12/usr.bin/posixshmcontrol/posixshmcontrol.c Thu Mar 12 16:07:41 2020 (r358913)
@@ -446,6 +446,7 @@ struct opmode {
static const struct opmode opmodes[] = {
{ .cmd = "create", .impl = create_shm},
{ .cmd = "rm", .impl = delete_shm, },
+ { .cmd = "list", .impl = list_shm },
{ .cmd = "ls", .impl = list_shm },
{ .cmd = "dump", .impl = read_shm, },
{ .cmd = "stat", .impl = stat_shm, },
More information about the svn-src-stable
mailing list