gpt4 book ai didi

c++ - 如何在linux内核模式下编程编译 "Hello World"代码?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:12:12 24 4
gpt4 key购买 nike

是的,正如标题,我不知道如何在linux内核模式下编写和编译“Hello World”代码,请用最简短易懂的方式帮助我。谢谢 !(也欢迎任何相关文件,我只是新手)

最佳答案

你可以开始Here :

/*  
* hello-1.c - The simplest kernel module.
*/
#include <linux/module.h> /* Needed by all modules */
#include <linux/kernel.h> /* Needed for KERN_INFO */

int init_module(void)
{
printk(KERN_INFO "Hello world 1.\n");

/*
* A non 0 return means init_module failed; module can't be loaded.
*/
return 0;
}

void cleanup_module(void)
{
printk(KERN_INFO "Goodbye world 1.\n");
}

关于c++ - 如何在linux内核模式下编程编译 "Hello World"代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3733779/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com