Linux设备驱动中的阻塞与非阻塞操作
进程能否被前面的进程更早的解禁?
2. 每次通过函数试图唤醒队列的时候,队列对条件的检测机制是怎样的?是否一个一个的进程顺序的检测各自的条件吗? 用来对本驱动进行测试的参考应用程序为:「读程序」 #include <sys/types.h> #include <sys/stat.h> #include <stdio.h> #include <fcntl.h> main() { int fd, num;fd = open("/dev/globalvar", O_RDWR, S_IRUSR | S_IWUSR);if (fd != - 1) { while (1) { read(fd, &num, sizeof(int)); //程序将阻塞在此语句,除非有针对globalvar 的输入printf("The globalvar is %d\n", num);//如果输入是0,则退出if (num == 0) { close(fd);break;} else { printf("device open failure\n");} 「写程序」 #include <sys/types.h> #include <sys/stat.h> #include <stdio.h> #include <fcntl.h> main() { int fd, num;fd = open("/dev/globalvar", O_RDWR, S_IRUSR | S_IWUSR);if (fd != - 1) { while (1) { printf("Please input the globalvar:\n");scanf("%d", &num);write(fd, &num, sizeof(int));//如果输入0,退出if (num == 0) { close(fd);break;} else { printf("device open failure\n");} |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |