From 0a2c4d1984310fa496751c9483c5ee7e6b3d433c Mon Sep 17 00:00:00 2001 From: kamil Date: Fri, 13 Apr 2018 20:30:09 +0000 Subject: Add a new example kernel module executor - basic implementation of callout and RUN_ONCE While there, perform a small cleanup in README. Patch by Polishing by myself. --- sys/modules/examples/executor/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sys/modules/examples/executor/Makefile (limited to 'sys/modules/examples/executor/Makefile') diff --git a/sys/modules/examples/executor/Makefile b/sys/modules/examples/executor/Makefile new file mode 100644 index 00000000000..50950fc016c --- /dev/null +++ b/sys/modules/examples/executor/Makefile @@ -0,0 +1,11 @@ +# $NetBSD: Makefile,v 1.1 2018/04/13 20:30:09 kamil Exp $ + +.include "../Makefile.inc" + +#S?= /usr/src/sys + +KMOD= executor +SRCS= executor.c + +.include + -- cgit