Module Name: src
Committed By: maxv
Date: Wed Dec 12 09:09:08 UTC 2018
Modified Files:
src/lib/libnvmm: libnvmm.3
Log Message:
Change the "FILES" section, in the end I don't want to commit toyvirt
and smallkern, there is little interest installing them by default,
rather they can be downloaded from www. It's better this way.
While here add NVMM(4) in "SEE ALSO".
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/lib/libnvmm/libnvmm.3
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libnvmm/libnvmm.3
diff -u src/lib/libnvmm/libnvmm.3:1.2 src/lib/libnvmm/libnvmm.3:1.3
--- src/lib/libnvmm/libnvmm.3:1.2 Sat Nov 10 10:57:06 2018
+++ src/lib/libnvmm/libnvmm.3 Wed Dec 12 09:09:08 2018
@@ -1,4 +1,4 @@
-.\" $NetBSD: libnvmm.3,v 1.2 2018/11/10 10:57:06 maxv Exp $
+.\" $NetBSD: libnvmm.3,v 1.3 2018/12/12 09:09:08 maxv Exp $
.\"
.\" Copyright (c) 2018 The NetBSD Foundation, Inc.
.\" All rights reserved.
@@ -27,7 +27,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd November 10, 2018
+.Dd December 12, 2018
.Dt LIBNVMM 3
.Os
.Sh NAME
@@ -473,14 +473,18 @@ variable
.Va errno
is set to indicate the error.
.Sh FILES
-Functional examples:
-.Pp
.Bl -tag -width XXXX -compact
-.It Pa src/share/examples/nvmm/toyvirt/
-Example of virtualizer.
-Launches the binary given as argument in a virtual machine.
-.It Pa src/share/examples/nvmm/smallkern/
-Example of a kernel that can be executed by toyvirt.
+.It Lk https://www.netbsd.org/~maxv/nvmm/nvmm-demo.zip
+Functional example (demonstrator).
+Contains a virtualizer that uses the
+.Nm
+API, and a small kernel that exercises this virtualizer.
+.It Pa src/sys/dev/nvmm/
+Source code of the kernel NVMM driver.
+.It Pa src/lib/libnvmm/
+Source code of the
+.Nm
+library.
.El
.Sh ERRORS
These functions will fail if:
@@ -508,6 +512,8 @@ uses the following error codes:
.It Bq Er EAGAIN
The VCPU cannot receive the event immediately.
.El
+.Sh SEE ALSO
+.Xr nvmm 4 .
.Sh AUTHORS
NVMM was designed and implemented by
.An Maxime Villard .