以串口的应用程序为例:
阻塞地都取串口一个字符 | 非阻塞地都取串口一个字符 |
char buf; fd = open('/dev/ttys',O_RDWR); .. .. res = read(fd,&buf,1); //当串口上有输入时才返回 if(res == 1) { printf('%cn',buf); } | char buf; fd = open('/dev/ttys',O_RDWR | O_NONBLOCK); .. .. while( read(fd,&buf,1) !=1); //当串口上无输入也返回,所 //以要循环尝试读取串口 printf('%cn',buf); |
现在我们有了阻塞的方式读取,那么阻塞的进程因为没有获得资源会进入休眠状态,现在就要聊聊有关唤醒的事了。在Linux设备驱动中,可以使用等待队列(wait queue)来实现阻塞进程的唤醒.等待队列能够用于实现内核中的异步事件通知机制。
Linux提供了有关等待队列的操作:
1)wait_queue_head_t my_queue; //定义等待队列头
2) init_waitqueue_head(&my_queue); //初始化队列头
如果觉得上边两步来的麻烦,可以直接使用
DECLARE_WAIT_QUEUE_HEAD(name) //定义并初始化
3) DECLARE_WAITQUEUE(name,tsk); //定义等待队列
4) void fastcall add_wait_queue(wait_queue_head_t *q, wait_queue_t *wait);
void fastcall remove_wait_queue(wait_queue_head_t *q, wait_queue_t *wait);
用于将等待队列wait添加到等待队列头指向的等待队列链表中 。
5) wait_event(queue, conditon);
wait_event_interruptible(queue, condition); //可以被信号打断
wait_event_timeout(queue, condition, timeout);
wait_event_interruptible_timeout(queue, condition, timeout); //不能被信号打断
queue:作为等待队列头的等待队列被唤醒
conditon:必须满足,否则阻塞
timeout和conditon相比,有更高优先级
6) void wake_up(wait_queue_head_t *queue);
void wake_up_interruptible(wait_queue_head_t *queue);
上述操作会唤醒以queue作为等待队列头的所有等待队列中所有属于该等待队列头的等待队列对应的进程。
7) sleep_on(wait_queue_head_t *q);
interruptible_sleep_on(wait_queue_head_t *q);
sleep_on作用是把目前进程的状态置成TASK_UNINTERRUPTIBLE,并定义一个等待队列,之后把他附属到等待队列头q,直到资源可用,q引导的等待队列被唤醒。interruptible_sleep_on作用是一样的, 只不过它把进程状态置为TASK_INTERRUPTIBLE.
这两个函数的流程是首先,定义并初始化等待队列,把进程的状态置成TASK_UNINTERRUPTIBLE或TASK_INTERRUPTIBLE,并将对待队列添加到等待队列头。
然后通过schedule(放弃CPU,调度其他进程执行。最后,当进程被其他地方唤醒,将等待队列移除等待队列头。
在Linux内核中,使用set_current_state()和__add_wait_queue()函数来实现目前进程状态的改变,直接使用current->state = TASK_UNINTERRUPTIBLE
类似的语句也是可以的。
因此我们有时也可能在许多驱动中看到,它并不调用sleep_on或interruptible_sleep_on(),而是亲自进行进程的状态改变和切换。
废话少说,直接上代码,实际代码很简单。
#include #include #include #include /*for spinlock and semaphore*/ #include #include #include /*for task management*/ #include #include /* * xiaoyang yi @HIT 2011-9-25 * char device driver with blocked testing */ MODULE_LICENSE('GPL'); static int MAJOR_NUM=0; static struct semaphore sem; static int global_var = 0; static int global_var_count = 0; static spinlock_t spin; /*waiting queue for kernel*/ static wait_queue_head_t wqueue; static int flag = 0; static ssize_t globalvar_read(struct file*,char*,size_t, loff_t*); static ssize_t globalvar_write(struct file*,const char*,size_t, loff_t*); static int globalvar_open(struct inode*node, struct file* fp); static int globalvar_release(struct inode*node, struct file* fp); /*init the file_operation structure*/ static struct file_operations globalvar_fpos={ .read = globalvar_read, .write = globalvar_write, .open = globalvar_open, .release = globalvar_release, }; static int __init globalvar_init(void) { int ret; printk('register globalvar:[blocked testing]'); /*register device drivre*/ ret = register_chrdev(MAJOR_NUM,'globalvar',&globalvar_fpos); if(ret < 0){ printk('globalvar reg failed!n'); }else{ spin_lock_init(&spin); } if(MAJOR_NUM == 0){ MAJOR_NUM = ret; } sema_init(&sem,1); init_waitqueue_head(&wqueue); return ret; } static void __exit globalvar_exit() { unregister_chrdev(MAJOR_NUM,'globalvar'); } static ssize_t globalvar_read(struct file* fp, char* buf, size_t len, loff_t* off) { /*wait until condition become true*/ if( wait_event_interruptible(wqueue,flag!=0) ){ return -ERESTARTSYS; } /*get semaphore*/ if(down_interruptible(&sem)){ return -ERESTARTSYS; } /*copy from kernel to user space*/ if(copy_to_user(buf,&global_var,sizeof(int)) != 0){ /*release semaphore*/ up(&sem); return -EFAULT; } /*data unaccessible flag*/ flag = 0; /*release semaphore*/ up(&sem); return sizeof(int); } static ssize_t globalvar_write(struct file* fs,const char* buf, size_t len, loff_t* off) { /*get semaphore*/ if(down_interruptible(&sem)){ return -ERESTARTSYS; } printk('down_interruptible ok!n'); if(copy_from_user(&global_var,buf,sizeof(int) != 0)){ /*release semaphore*/ up(&sem); return -EFAULT; } /*release semaphore*/ up(&sem); /*data ready*/ flag = 1; /*wake up the waiting task*/ wake_up_interruptible(&wqueue); return sizeof(int); } /* * open device with checking busy. * if busy,count++;else return 0 */ static int globalvar_open(struct inode*node, struct file* fp) { /*get spinlock*/ //spin_lock(&spin); /*reach criticle section*/ //if(global_var_count){ //spin_unlock(&spin); //printk('[debug]:globalvar open fialed!n'); //return -EBUSY; //} /*release spinlock*/ global_var_count++; //spin_unlock(&spin); return 0; } static int globalvar_release(struct inode*node, struct file* fp) { //spin_lock(&spin); global_var_count--; //spin_unlock(&spin); return 0; } /*module setting*/ module_init(globalvar_init); module_exit(globalvar_exit); /*this is end of file*/ 这里的信号量和wait_queue操作要注意顺序,否则可能形成死锁。 如: //对于读 down(sem) wait_queue(...) up(sem) //对于写: down(sem) up(sem) wake_up_queue(..) 这种情况下可能读进程永远在wait_queue里睡眠,而写进程由于无法得到sem永远不会执行wake_up... .... 下面是测试用的应用程序,包括了读写两个分支。 #include #include #include #include #include /* * xiaoyang yi @HIT 2011.9.24 * this is a test for char device 'globalvar' */ int main(int argc, char** args) { int fd, num; if (argc >= 2) { if (strcmp(args[1], '0') == 0) { printf('mode read!n'); /*opemn device*/ fd = open('/dev/globalvar', O_RDWR, S_IRUSR | S_IWUSR); if (fd != -1) { while (1) { read(fd, &num, sizeof(int)); printf('globalvar=%dn',num); if (num == 0) { close(fd); break; } }//while } else { printf('error:device open error!n'); } } else if (strcmp(args[1], '1') == 0) { printf('mode write!n'); /*opemn device*/ fd = open('/dev/globalvar', O_RDWR, S_IRUSR | S_IWUSR); if (fd != -1) { while (1) { /*writing test*/ printf('print number to write: '); scanf('%d', &num); write(fd, &num, sizeof(int)); if (num == 0) { close(fd);
上一篇:LRF020 DRIVER FOR LINUX(BASED ON TQ2440/ARM9)
下一篇:linux驱动学习(3)--同步、信号量和自旋锁
推荐阅读最新更新时间:2024-11-02 12:37
设计资源 培训 开发板 精华推荐
- LF25ABDT-TR 2.5V 延迟开启低压降稳压器的典型应用
- 使用 Analog Devices 的 LTC1434CGN 的参考设计
- OP495GPZ低功耗RTD放大器的典型应用
- OP413ESZ-REEL耳机输出放大器多媒体声音编解码器典型应用
- #第六届立创电赛#7.12基于PAM8407的D类功放
- AM6TW-2407SZ 7.2V 6 瓦双输出 DC-DC 转换器的典型应用
- TB67S142FTG 2 相单极步进电机驱动器评估板
- LTC3265MPFE 低噪声 +7V/-2V 电源的典型应用电路来自一个单端 5V 输入电源(频率 = 200kHz)
- LT6656BCDC-4.096、4.096V 低功率精密高压电源监视器的典型应用
- 使用具有最大功率点跟踪功能的 LTC4162EUFD-LAD 太阳能供电 36 节 3.2A 充电器的典型应用