summaryrefslogtreecommitdiff
path: root/sys/modules/examples/Makefile
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/Makefile
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/Makefile')
-rw-r--r--sys/modules/examples/Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/sys/modules/examples/Makefile b/sys/modules/examples/Makefile
index d028a05e965..83f364e2763 100644
--- a/sys/modules/examples/Makefile
+++ b/sys/modules/examples/Makefile
@@ -1,14 +1,15 @@
-# $NetBSD: Makefile,v 1.4 2018/04/13 20:30:09 kamil Exp $
+# $NetBSD: Makefile,v 1.5 2018/04/20 00:06:45 kamil Exp $
.include <bsd.own.mk>
-SUBDIR+= hello
SUBDIR+= executor
-#SUBDIR+= luahello # Nothing to build here, only text files
-SUBDIR+= luareadhappy # Needs an additional Lua script
-SUBDIR+= ping # Needs an additional helper program
+SUBDIR+= hello
+#SUBDIR+= luahello # Nothing to build here, only text files
+SUBDIR+= luareadhappy # Needs an additional Lua script
+SUBDIR+= ping # Needs an additional helper program
SUBDIR+= properties
SUBDIR+= readhappy
+SUBDIR+= readhappy_mpsafe # Contains an additional helper program
SUBDIR+= sysctl
.include <bsd.subdir.mk>