Operating System - HP-UX
1832084 Members
3087 Online
110037 Solutions
New Discussion

Re: loadable kernel module

 
wanjin
New Member

loadable kernel module

hello. I'm developing a file system which works on vnode level as a kernel loadable module on HPUX 11.11
actually, I implemented it on HPUX 11.00 and now I'm trying to port it to 11.11
I compiled it with no warning but failed to load it. The log message was
"undefined symbol _assfail in loadable module." That sounds like that I need some library which has definition of _assfail().
anybody can help me please?


1 REPLY 1
Dennis Handly
Acclaimed Contributor

Re: loadable kernel module

The function _assfail is an assert function available in a debuggable kernel only. You'll need to make sure you don't compile your DLKM with the -D debugging defines. Or you'll need to stub that call out.