LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Kernel (https://www.linuxquestions.org/questions/linux-kernel-70/)
-   -   a simple question about module programming (https://www.linuxquestions.org/questions/linux-kernel-70/a-simple-question-about-module-programming-503907/)

linwenyuan 11-22-2006 08:25 AM

a simple question about module programming
 
i am new man ,and i want to study module programming ,as a start i test following programming:
/*hello.c*/
#ifndef MODULE
#define MODULE
#endif
#ifndef __KERNEL__
#define __KERNEL__
#endif
#include <linux/kernel.h>
#include <linux/module.h>
int init_module(void) {
printk("Hello World!\n");
return 0;
}
void cleanup_module(void) {
printk("Goodbye world!\n");
}
MODULE_LICENSE("GPL");

but when i compile it,it report me these messages:
# cc -O2 -Wall -c hello.c
In file included from /usr/include/linux/module.h:10,
from hello.c:8:
/usr/include/linux/config.h:5:2: error: #error Incorrectly using glibc headers for a kernel module
hello.c: 在函数 ‘init_module’ 中:
hello.c:11: 警告:隐式声明函数 ‘printk’

how to fix the error? (the last two lines is warnning)
any answer would be appreciated very much

isanjaykumar 11-23-2006 04:16 AM

Hi,
Please compile it as below:

KERNEL_SRC_DIR=<path of ur linux kernel soruce>

cc -O2 -DMODULE -D__KERNEL__ -I $KERNEL_SRC_DIR/include -Wall -c hello.c

~Sanjay

someshwar 11-24-2006 12:51 AM

r u working on 2.4 or 2.6?


All times are GMT -5. The time now is 12:59 AM.