码迷,mamicode.com
首页 >  
搜索关键字:ops    ( 1455个结果
字符设备驱动之从用户程序中的系统调用到驱动中的具体实现
引:我们知道每一个字符设备在内核中都有一个cdev结构来描述之,而这个结构比较重要的一个成员就是const struct file_operations *ops;该结构的作用是将用户程序中的系统调用和驱动程序中的具体实现函数一一对应起来。当在用户程序中对一个字符设备文件调用某一系统调用时,就知.....
分类:其他好文   时间:2015-07-20 22:49:10    阅读次数:114
RT-thread 设备驱动组件之IIC总线设备
本文主要介绍RT-thread中IIC总线设备驱动,涉及到的主要文件有:驱动框架文件(i2c_core.c,i2c_dev.c,i2c-bit-ops.c,i2c_dev.h,i2c.h);底层硬件驱动文件(i2c_soft.c,i2c_soft.h)。这里的i2c_soft.c和i2c_so...
分类:其他好文   时间:2015-07-19 21:27:06    阅读次数:309
Visible Ops
Link:http://www.wikisummaries.org/Visible_Ops Contents[hide]1What is ITIL?2Introduction3Phase One: Stabilize the Patient4Phase Two: Catch & Release an...
分类:其他好文   时间:2015-07-15 18:29:33    阅读次数:139
zabiix监控磁盘io
系统只有sda硬盘,所以只需要监控sda就可以了,有需要自己修改模版及添加项目[root@123~]#vim/usr/local/zabbix/etc/zabbix_agentd.conf UserParameter=mysql.status[*],/home/sh/checkmysqlperformance.sh$1$2 UserParameter=custom.vfs.dev.read.ops[*],cat/proc/diskstats|g..
分类:其他好文   时间:2015-07-07 19:54:17    阅读次数:132
LeetCode "Power of Two"
Just one line. Bit-wise ops:class Solution {public: bool isPowerOfTwo(int n) { return (n > 0) && (n & (n - 1)) == 0; }};
分类:其他好文   时间:2015-07-06 07:45:25    阅读次数:115
REDIS的几个测试结果
场景一:对单一键大并发量增加(INC)操作,模拟对热点产品的库存修改测试点:原子性,保证最后的键值等于所有键值增加操作的总和性能,保证在大并发量下写操作的性能没有大的降低线程数100次INC操作的平均时间服务端数据10140instantaneous_ops_per_sec(每秒处理指令数):342in..
分类:其他好文   时间:2015-06-30 18:38:11    阅读次数:7326
记一次TcpListenOverflows报警解决过程
应用处理网络请求的能力,由两个因素决定: 1、应用的OPS容量(本例中是 就是我们的jetty应用:controller和thrift的处理能力) 2、Socket等待队列的长度(这个是os级别的,cat /proc/sys/net/core/somaxconn 可以查看,默认是128,可以调优成了4192,有的公司会搞成32768)...
分类:其他好文   时间:2015-06-28 11:18:03    阅读次数:200
Theano2.1.18-基础知识之theano的扩展
来自:http://deeplearning.net/software/theano/tutorial/extending_theano.htmlExtending Theano 该教程覆盖了如何使用新颖的ops来扩展theano。它主要关注哪些能够提供一个python实现的ops。而Extend....
分类:其他好文   时间:2015-06-23 10:07:22    阅读次数:181
VHDL之FSM
1 Intro The figure shows the block diagram of a single-phase state machine. The lower section contains sequential logic (?ip-?ops), while the uppers.....
分类:其他好文   时间:2015-06-09 21:24:01    阅读次数:134
Show you how to update BMW DME with WINKFP
B-MW ICOM BMW ISIS ISID A+B+C is the latest program, diagnose, coding and complete system BMW have the full system replace DIS GT1/SSS/OPS and OPPS.
分类:Windows程序   时间:2015-06-05 17:02:37    阅读次数:263
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!