svn commit: r262037 - stable/9/share/man/man9
Andriy Gapon
avg at FreeBSD.org
Mon Feb 17 12:37:27 UTC 2014
Author: avg
Date: Mon Feb 17 12:37:26 2014
New Revision: 262037
URL: http://svnweb.freebsd.org/changeset/base/262037
Log:
MFC r254266,254309: Add event handlers for module load and unload events
This is just a merge of EVENTHANDLER.9, the actual code chnage was merged earlier.
Modified:
stable/9/share/man/man9/EVENTHANDLER.9
Directory Properties:
stable/9/share/man/man9/ (props changed)
Modified: stable/9/share/man/man9/EVENTHANDLER.9
==============================================================================
--- stable/9/share/man/man9/EVENTHANDLER.9 Mon Feb 17 12:29:17 2014 (r262036)
+++ stable/9/share/man/man9/EVENTHANDLER.9 Mon Feb 17 12:37:26 2014 (r262037)
@@ -23,7 +23,7 @@
.\" SUCH DAMAGE.
.\" $FreeBSD$
.\"
-.Dd January 7, 2005
+.Dd August 1, 2013
.Dt EVENTHANDLER 9
.Os
.Sh NAME
@@ -197,6 +197,12 @@ Callbacks invoked when an interface is c
Callbacks invoked when a new network interface appears.
.It Vt ifnet_departure_event
Callbacks invoked when a network interface is taken down.
+.It Vt kld_load
+Callbacks invoked after a linker file has been loaded.
+.It Vt kld_unload
+Callbacks invoked before a linker file is about to be unloaded.
+These callbacks may be used to return an error and prevent the unload from
+proceeding.
.It Vt power_profile_change
Callbacks invoked when the power profile of the system changes.
.It Vt process_exec
More information about the svn-src-stable-9
mailing list