logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

modfind — returns the modid of a kernel module

Description

The modfind() system call returns the modid of the kernel module referenced by modname.

Errors

errno is set to the following if modfind() fails: [EFAULT] The data required for this operation could not be read from the kernel space. [ENOENT] The file specified is not loaded in the kernel.

History

The kld interface first appeared in FreeBSD 3.0. Debian September 28, 2000 MODFIND(2)

Library

Standard C Library (libc, -lc)

Name

modfind — returns the modid of a kernel module

Return Values

The modfind() system call returns the modid of the kernel module referenced by modname. Upon error, modfind() returns -1 and sets errno to indicate the error.

See Also

kldfind(2), kldfirstmod(2), kldload(2), kldnext(2), kldstat(2), kldsym(2), kldunload(2), modfnext(2), modnext(2), modstat(2), kld(4), kldstat(8)

Synopsis

#include<sys/param.h>#include<sys/module.h>intmodfind(constchar*modname);

See Also