Operating System - Linux
1751712 Members
5480 Online
108781 Solutions
New Discussion

Re: dispatch point "mod_load" is not known

 
Nihar Ranjan Panda
New Member

dispatch point "mod_load" is not known

Hi,
I am new to HP-UX driver programming.
I have written a simple Loadable Kernel Module.
I got problem during compilation in my modmeta file.

Problem Statement:
patch point "mod_load" is not known

Here is my modmeta file content:

module myDriver {
desc "My sample driver"
type wsio_class
version 1.0.0
states auto loaded static
loadtimes driver_install run
unloadable
dependency wsio
initfunc driver_install myDriver_install static
initfunc mod_load myDriver_load
initfunc mod_unload myDriver_unload
driver {
type char block
class pseudo
flags save_conf
}
}
1 REPLY 1
Dennis Handly
Acclaimed Contributor

Re: dispatch point "mod_load" is not known