相信自己,只有不想做的,没有做不到的。
发布时间:2013-12-16 21:12:20
一 Linux 进程进程:程序运行时候产生,进程是程序一次执行过程程序:保存磁盘可执行指令集合进程组成:代码段,数据段,BSS段,堆,栈,一组寄存器值(PC程序计算器,记录需要执行指令地址)进程运行需要资源:CPU,内存,时间片Linux 进程的标识:PID(进程号) PPID(父进程)Linux 用task_struct结.........【阅读全文】
发布时间:2013-12-13 10:36:01
//配置MACifconfig eth0 downifconfig eth0 hw ether D6:53:5D:EA:1C:09 //更改MAC地址ifconfig eth0 up//配置IP-GW-DNSifconfig eth0 192.168.1.8 netmask 255.255.255.0 up //配置IP地址ifconfig eth0 up &nb.........【阅读全文】
发布时间:2013-12-12 13:26:16
//在s5pc100_pwm.c中#include #include #include #include #include #include #include #include #include "s5pc100_pwm.h"MODULE_LICENSE("Dual BSD/GPL");static int pw.........【阅读全文】
发布时间:2013-12-12 13:02:17
定时器1>/*second设备结构体*/struct second_dev{ struct cdev cdev; /*cdev结构体*/ atomic_t counter;/* 一共经历了多少秒?*/ struct timer_list s_timer; /*设备要使用的定时器*/};2>/*文件打开函数*/int second_open(struct inode *inode, struct file *filp){ /*初始化定时器*.........【阅读全文】