码迷,mamicode.com
首页 > 其他好文 > 详细

第六章

时间:2016-06-06 13:27:58      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

本章是第一个linux驱动程序,统计单词个数。

编写linux驱动程序的步骤,步骤如下:

1建立linux驱动骨架。

 Module_init module_exit宏制定

2注册和注销设备文件

 Misc_register   mics_deregister

3.指定驱动相关信息

     Module_author  module_license module_alias module_description

4.制定回调函数

5.编写业务逻辑

 

6.编写makefile文件

7.编译linux驱动程序

8.安装和卸载linux驱动

#include <stdio.h>

/* count lines in input */

main()

{

 int c, nl;

 nl = 0;

 while ((c = getchar()) != EOF)

 if (c == ‘\n‘)

  ++nl;

 printf("%d\n", nl);

}

第六章

标签:

原文地址:http://www.cnblogs.com/jingqianfei/p/5563290.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!