svn commit: r330795 - head/lib/libsysdecode

Bjoern A. Zeeb bz at FreeBSD.org
Mon Mar 12 13:32:52 UTC 2018


Author: bz
Date: Mon Mar 12 13:32:51 2018
New Revision: 330795
URL: https://svnweb.freebsd.org/changeset/base/330795

Log:
  The vmresult table was missing most of the values apart from two due to
  extra "_" in the names we grep for. Add the "_" to the pattern.
  
  Reviewed by:	jhb
  MFC after:	3 days
  Sponsored by:	iXsystems, Inc.

Modified:
  head/lib/libsysdecode/mktables

Modified: head/lib/libsysdecode/mktables
==============================================================================
--- head/lib/libsysdecode/mktables	Mon Mar 12 12:21:19 2018	(r330794)
+++ head/lib/libsysdecode/mktables	Mon Mar 12 13:32:51 2018	(r330795)
@@ -146,7 +146,7 @@ gen_table "socktype"        "SOCK_[A-Z]+[[:space:]]+[1
 gen_table "thrcreateflags"  "THR_[A-Z]+[[:space:]]+0x[0-9]+"               "sys/thr.h"
 gen_table "umtxop"          "UMTX_OP_[[:alnum:]_]+[[:space:]]+[0-9]+"      "sys/umtx.h"
 gen_table "vmprot"          "VM_PROT_[A-Z]+[[:space:]]+\(\(vm_prot_t\)[[:space:]]+0x[0-9]+\)"  "vm/vm.h"
-gen_table "vmresult"        "KERN_[A-Z]+[[:space:]]+[0-9]+"                "vm/vm_param.h"
+gen_table "vmresult"        "KERN_[A-Z_]+[[:space:]]+[0-9]+"               "vm/vm_param.h"
 gen_table "wait6opt"        "W[A-Z]+[[:space:]]+[0-9]+"                    "sys/wait.h"
 gen_table "seekwhence"      "SEEK_[A-Z]+[[:space:]]+[0-9]+"                "sys/unistd.h"
 gen_table "fcntlcmd"        "F_[A-Z0-9_]+[[:space:]]+[0-9]+[[:space:]]+"   "sys/fcntl.h"	"F_CANCEL|F_..LCK"


More information about the svn-src-all mailing list