aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/module.h
diff options
context:
space:
mode:
authorMatthew Dillon <dillon@FreeBSD.org>1999-01-29 08:36:45 +0000
committerMatthew Dillon <dillon@FreeBSD.org>1999-01-29 08:36:45 +0000
commit3cfc69e6c2a8a51bb277254e4dfed9dca2eaab98 (patch)
tree1ec92aad1d4847306c84421afc93861663a6b00f /sys/sys/module.h
parent9e26dd2a54c5fc0693161a71c4d3c27088fc8552 (diff)
downloadsrc-3cfc69e6c2a8a51bb277254e4dfed9dca2eaab98.tar.gz
src-3cfc69e6c2a8a51bb277254e4dfed9dca2eaab98.zip
More -Wall / -Wcast-qual cleanup. Also, EXEC_SET can't use
C_DECLARE_MODULE due to the linker_file_sysinit() function making modifications to the data.
Notes
Notes: svn path=/head/; revision=43387
Diffstat (limited to 'sys/sys/module.h')
-rw-r--r--sys/sys/module.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/sys/sys/module.h b/sys/sys/module.h
index a5799954147a..05f48c297b27 100644
--- a/sys/sys/module.h
+++ b/sys/sys/module.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: module.h,v 1.8 1999/01/27 21:50:00 dillon Exp $
+ * $Id: module.h,v 1.9 1999/01/29 06:47:53 dillon Exp $
*/
#ifndef _SYS_MODULE_H_
@@ -67,11 +67,7 @@ typedef union modspecific {
SYSINIT(name##module, sub, order, module_register_init, &data) \
struct __hack
-#define C_DECLARE_MODULE(name, data, sub, order) \
- C_SYSINIT(name##module, sub, order, module_register_init, &data) \
- struct __hack
-
-void module_register_init(void *data);
+void module_register_init(const void *data);
int module_register(const char *name, modeventhand_t callback, void *arg,
void *file);
module_t module_lookupbyname(const char *name);