在ubuntu上开发编译内核模块,并查看printk打印的消息

模块源码:

// 下面的是主要的内容
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>


MODULE_LICENSE("GPL");


static int year=2017;


int hello_init()
{
    printk(KERN_WARNING "Hello kernel, it's %d!\n",year);
    return 0;
}




void hello_exit()
{
    printk("Bye, kernel!\n");
}


// 下面两个为关键的模块函数
module_init(hello_init);
module_exit(hello_exit);

Makefile:

ifneq ($(KERNELRELEASE),)


obj-m := helloworld.o


else


KDIR=/lib/modules/3.5.0-23-generic/build
all:
make -C $(KDIR) M=$(PWD) modules
clean:
rm -f *.ko *.o *.mod.c *.symvers
endif

执行makefile编译模块-》执行insmod helloworld.ko控制台不会显示printk打印的消息,应该使用 dmesg -c指令。成功看到打印的消息

root@ubuntu:/home/gec/driver# dmesg -c
[706893.639845] Hello kernel, it's 2017!

c++类头文件

#ifndef MAN_H
#define MAN_H
 
 
class Man
{
public:
    Man();
    ~Man();
    void eat();
};
 
#endif // MAN_H

c++类源文件

#include "man.h"
#include <stdio.h>
Man::Man()
{
    printf("man created\n");
}
Man::~Man(){
    printf("man freed\n");
}
 
void Man::eat(){
    printf("man eat\n");
}
extern "C"{
  void test();
}
void test(){
//    Man *man=new Man();
//    man->eat();
    Man man;
    man.eat();
}

c头文件

#ifndef C_H
#define C_H
 
 
 
extern void test();
void ctest();
 
 
#endif // C_H

c源文件

#include "c.h"
 
void ctest(){
    test();
}
 

测试入口main.cpp

#include <iostream>
extern "C"{
#include "c.h"
}
using namespace std;
 
int main(int argc, char *argv[])
{
    cout << "Hello World!" << endl;
    ctest();
    return 0;
}

测试结果:

Hello World!

man created

man eat

man freed

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

无v邪

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值