Module Name: src Committed By: uwe Date: Sat Jan 13 12:06:48 UTC 2018
Modified Files: src/share/man/man4: bpf.4 Log Message: Fix column width in postscript output. To generate a diff of this commit: cvs rdiff -u -r1.56 -r1.57 src/share/man/man4/bpf.4 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/share/man/man4/bpf.4 diff -u src/share/man/man4/bpf.4:1.56 src/share/man/man4/bpf.4:1.57 --- src/share/man/man4/bpf.4:1.56 Mon Jul 3 21:30:58 2017 +++ src/share/man/man4/bpf.4 Sat Jan 13 12:06:48 2018 @@ -1,6 +1,6 @@ .\" -*- nroff -*- .\" -.\" $NetBSD: bpf.4,v 1.56 2017/07/03 21:30:58 wiz Exp $ +.\" $NetBSD: bpf.4,v 1.57 2018/01/13 12:06:48 uwe Exp $ .\" .\" Copyright (c) 1990, 1991, 1992, 1993, 1994 .\" The Regents of the University of California. All rights reserved. @@ -597,7 +597,7 @@ opcode uses the 32 bit .Va k field as the offset, allowing arbitrarily distant destinations. All conditionals use unsigned comparison conventions. -.Bl -column "BPF_JMP+BPF_JGE+BPF_K" "pc += (A \*[Ge] k) ? jt : jf" -offset indent +.Bl -column "BPF_JMP+BPF_JSET+BPF_K" "pc += (A \*[Ge] k) ? jt : jf" -offset indent .It Sy BPF_JMP+BPF_JA Ta pc += k .It Sy BPF_JMP+BPF_JGT+BPF_K Ta "pc += (A > k) ? jt : jf" .It Sy BPF_JMP+BPF_JGE+BPF_K Ta "pc += (A \*[Ge] k) ? jt : jf" @@ -634,7 +634,7 @@ that copy the index register to the accu Also, two instructions to call a "coprocessor" if initialized by the kernel component. There is no coprocessor by default. -.Bl -column "BPF_MISC+BPF_COP" "A <- funcs[X](...)" -offset indent +.Bl -column "BPF_MISC+BPF_COPX" "A <- funcs[X](...)" -offset indent .It Sy BPF_MISC+BPF_COP Ta A <- funcs[k](..) .It Sy BPF_MISC+BPF_COPX Ta A <- funcs[X](..) .El