Module Name: src
Committed By: pgoyette
Date: Mon Jan 14 00:16:32 UTC 2019
Modified Files:
src/doc [pgoyette-compat]: TODO.compat-module
Log Message:
Note the desire to return some callback functions to having a void
type, rather than int (changing them was necessary to use a common
return type for all callbacks).
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.19 -r1.1.2.20 src/doc/TODO.compat-module
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/doc/TODO.compat-module
diff -u src/doc/TODO.compat-module:1.1.2.19 src/doc/TODO.compat-module:1.1.2.20
--- src/doc/TODO.compat-module:1.1.2.19 Sun Jan 13 23:33:07 2019
+++ src/doc/TODO.compat-module Mon Jan 14 00:16:32 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: TODO.compat-module,v 1.1.2.19 2019/01/13 23:33:07 pgoyette Exp $ */
+/* $NetBSD: TODO.compat-module,v 1.1.2.20 2019/01/14 00:16:32 pgoyette Exp $ */
DONE
----
@@ -103,3 +103,7 @@ TODO - Not required for branch merge
deal with them appropriately. For now, we simply ensure that they
are included in every kernel via 'options COMPAT_UTILS' in file
sys/conf/std
+
+22. Several hook callback routines have had their return type changed
+ from "void" to "int" in order to provide a common type in the
+ hook structure. Ideally, I'd like to revert these back to "void".