Module Name:    src
Committed By:   pgoyette
Date:           Sun Jun  3 01:52:48 UTC 2018

Modified Files:
        src/share/man/man9: Makefile module.9

Log Message:
Also add new entries in the .Nm list, and update Makefile to actually
build the MLINKS


To generate a diff of this commit:
cvs rdiff -u -r1.423 -r1.424 src/share/man/man9/Makefile
cvs rdiff -u -r1.44 -r1.45 src/share/man/man9/module.9

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/man9/Makefile
diff -u src/share/man/man9/Makefile:1.423 src/share/man/man9/Makefile:1.424
--- src/share/man/man9/Makefile:1.423	Mon May 28 22:25:12 2018
+++ src/share/man/man9/Makefile	Sun Jun  3 01:52:47 2018
@@ -1,4 +1,4 @@
-#       $NetBSD: Makefile,v 1.423 2018/05/28 22:25:12 pgoyette Exp $
+#       $NetBSD: Makefile,v 1.424 2018/06/03 01:52:47 pgoyette Exp $
 
 #	Makefile for section 9 (kernel function and variable) manual pages.
 
@@ -531,7 +531,9 @@ MLINKS+=module.9 module_autoload.9 \
 	module.9 module_rele.9 \
 	module.9 module_source.9 \
 	module.9 module_start_unload_thread.9 \
-	module.9 module_unload.9
+	module.9 module_unload.9 \
+	module.9 module_register_callbacks.9 \
+	module.9 module_unregister_callbacks.9
 MLINKS+=mstohz.9 hztoms.9
 MLINKS+=mutex.9 mutex_init.9 mutex.9 mutex_destroy.9 mutex.9 mutex_enter.9 \
 	mutex.9 mutex_exit.9 mutex.9 mutex_tryenter.9 mutex.9 mutex_owned.9 \

Index: src/share/man/man9/module.9
diff -u src/share/man/man9/module.9:1.44 src/share/man/man9/module.9:1.45
--- src/share/man/man9/module.9:1.44	Sun Jun  3 01:50:28 2018
+++ src/share/man/man9/module.9	Sun Jun  3 01:52:47 2018
@@ -1,4 +1,4 @@
-.\"	$NetBSD: module.9,v 1.44 2018/06/03 01:50:28 pgoyette Exp $
+.\"	$NetBSD: module.9,v 1.45 2018/06/03 01:52:47 pgoyette Exp $
 .\"
 .\" Copyright (c) 2010 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -41,7 +41,9 @@
 .Nm module_find_section ,
 .Nm module_kernel ,
 .Nm module_name ,
-.Nm module_source
+.Nm module_source ,
+.Nm module_register_callbacks ,
+.Nm module_unregister_callbacks
 .Nd kernel module loader
 .Sh SYNOPSIS
 .In sys/module.h

Reply via email to