diff options
author | 2012-07-21 07:16:03 +0000 | |
---|---|---|
committer | 2012-07-21 07:16:03 +0000 | |
commit | 653a2889a7a755dd2d39e6b82d9c978f45ed5e41 (patch) | |
tree | 04e3ef9a434af5dadf780d9493ff9d9c9e36ed86 | |
parent | Add a new mmap(2) flag __MAP_NOREMAP for use with MAP_FIXED to (diff) | |
download | wireguard-openbsd-653a2889a7a755dd2d39e6b82d9c978f45ed5e41.tar.xz wireguard-openbsd-653a2889a7a755dd2d39e6b82d9c978f45ed5e41.zip |
Make kdump recognize the __MAP_NOREPLACE flag.
ok deraadt
-rw-r--r-- | usr.bin/kdump/mksubr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/kdump/mksubr b/usr.bin/kdump/mksubr index 73166171222..bbd36329df6 100644 --- a/usr.bin/kdump/mksubr +++ b/usr.bin/kdump/mksubr @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: mksubr,v 1.12 2012/07/08 10:23:36 guenther Exp $ +# $OpenBSD: mksubr,v 1.13 2012/07/21 07:16:03 matthew Exp $ # # Copyright (c) 2006 David Kirchner <dpk@dpk.net> # @@ -455,7 +455,7 @@ auto_fflags_type "flagsname" "O_[A-Z]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/fcntl.h" auto_orz_type "atflagsname" "AT_[A-Z_]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/fcntl.h" auto_or_type "accessmodename" "[A-Z]_OK[[:space:]]+0?x?[0-9A-Fa-f]+" "sys/unistd.h" auto_or_type "mmapprotname" "PROT_[A-Z]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/mman.h" -auto_or_type "mmapflagsname" "MAP_[A-Z]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/mman.h" +auto_or_type "mmapflagsname" "(__)?MAP_[A-Z]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/mman.h" auto_orz_type "wait4optname" "W[A-Z]+[[:space:]]+[0-9]+" "sys/wait.h" #auto_or_type "timerflagsname" "TIMER_[A-Z]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/time.h" #auto_or_type "getfsstatflagsname" "MNT_[A-Z]+[[:space:]]+[1-9][0-9]*" "sys/mount.h" |