当前位置: 技术问答>linux和unix
菜鸟请教,应用程序如何判断驱动程序已经挂载成功
来源: 互联网 发布时间:2017-01-15
本文导语: 已经写好驱动hello.ko, init, exit, open函数也已经写好 如果先在控制台"insmod hello.ko"(驱动程序会输出提示信息"install hello.ko") 然后在应用程序里面, static int fd; fd = open("/dev/hello",0);(驱动程序提示信息"open hello") if(fd
已经写好驱动hello.ko, init, exit, open函数也已经写好
如果先在控制台"insmod hello.ko"(驱动程序会输出提示信息"install hello.ko")
然后在应用程序里面,
static int fd;
fd = open("/dev/hello",0);(驱动程序提示信息"open hello")
if(fd
如果先在控制台"insmod hello.ko"(驱动程序会输出提示信息"install hello.ko")
然后在应用程序里面,
static int fd;
fd = open("/dev/hello",0);(驱动程序提示信息"open hello")
if(fd