summaryrefslogtreecommitdiff
path: root/sys/modules/examples/README
diff options
context:
space:
mode:
authorkamil <kamil@NetBSD.org>2018-04-20 00:06:45 +0000
committerkamil <kamil@NetBSD.org>2018-04-20 00:06:45 +0000
commit3a3da5ae159d89924e6497ebcdc823974ce68e04 (patch)
treeb47f3dd8c8c9885dfbf9c5c20d3a2416e2244f94 /sys/modules/examples/README
parent2ce8025035a5e4f2472ca9294e8275f9ad14b682 (diff)
Add new example loadable kernel module: readhappy_mpsafe
readhappy_mpsafe - demonstrates how to make a module MPSAFE This module contains an additional helper program test_readhappy.c, that is designed to exercise the kernel module with multiple threads. Submitted by <Siddharth Muralee>
Diffstat (limited to 'sys/modules/examples/README')
-rw-r--r--sys/modules/examples/README7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/modules/examples/README b/sys/modules/examples/README
index 52ad568bcc6..b220f622cf4 100644
--- a/sys/modules/examples/README
+++ b/sys/modules/examples/README
@@ -1,4 +1,4 @@
- $NetBSD: README,v 1.6 2018/04/13 20:30:09 kamil Exp $
+ $NetBSD: README,v 1.7 2018/04/20 00:06:45 kamil Exp $
Kernel Developer's Manual
@@ -13,6 +13,7 @@ DESCRIPTION
* properties - handle incoming properties during the module load
* ping - basic ioctl(9)
* readhappy - basic implementation of read(9) with happy numbers
+ * readhappy_mpsafe- demonstrates how to make a module MPSAFE
* sysctl - demonstrates adding a sysctl handle dynamically
To build the examples you need a local copy of NetBSD sources. You also
@@ -58,8 +59,8 @@ HISTORY
ping, luahello and luareadhappy) first appeared in NetBSD 8.0; they were
written by Kamil Rytarowski.
- The executor and sysctls module first appeared in NetBSD 9.0 and were
- authored by Siddharth Muralee.
+ The readhappy_mpsafe, executor and sysctls modules first appeared in NetBSD
+ 9.0 and were authored by Siddharth Muralee.
AUTHORS
This document was written by Kamil Rytarowski.