http://developer.android.com/training/wearables/data-layer/events.html#WaitSection 1 :Wait for the Status of Data Layer Calls- 等待数据操作结果You'll notice t...
分类:
移动开发 时间:
2014-11-22 18:40:15
阅读次数:
243
相关结构:http://lxr.free-electrons.com/source/include/linux/poll.h?v=3.8 33 /* 34 * Do not touch the structure directly, use the access functions 35 * p.....
分类:
其他好文 时间:
2014-11-21 15:47:04
阅读次数:
137
我们先看一段代码:/** * 计算输出其他线程锁计算的数据* */ public class ThreadA { public static void main(String[] args) throws InterruptedException{ ThreadB b = new...
分类:
编程语言 时间:
2014-11-21 12:36:04
阅读次数:
265
2014年11月20日,星期四 更新1. 示例1declare/* type card_rec_type is record ( dn_no channel.dn_no%type, channel_id channel.channel_id%type); type nested_card_type ...
分类:
数据库 时间:
2014-11-21 01:18:08
阅读次数:
408
select [CollectDateTime] as '时间',[Channel_34] as '通道34',[Channel_54] as '通道54' from [DataTable] where [CollectDateTime] '2014-11-19 17:15:34' LIMIT 10...
分类:
数据库 时间:
2014-11-20 20:08:03
阅读次数:
398
//无名信号量的常见用法是将要保护的变量放在sem_wait和sem_post中间所形成的临界区内,这样该变量就会被//保护起来,例如:#include #include #include #include #include int number; // 被保护的全局变量sem_t sem_id.....
分类:
编程语言 时间:
2014-11-20 18:17:44
阅读次数:
293
Wait和waitpid出现的原因(SIGCHLD): 当子进程退出的时候,内核会向父进程发送SIGCHLD信号,子进程的退出是个异步事件(子进程可以在父进程运行的任何时刻终止) 子进程退出时,内核将子进程置为僵尸状态,这个进程称为僵尸进程,它只保留最小的一些内核数据结构,以便父进程查询子进程的退出状态。 父进程查询子进程的退出状态可以用wait/waitpid函数...
分类:
其他好文 时间:
2014-11-20 17:06:02
阅读次数:
252
用Pytho实现了一个Kahn Process Network:思路:用Python的list模拟queue。每个channel一个queue用一个list (fgLog)来记录所有push到fg channel的值用于最后的显示channel的queue设置为全局变量代码实现:h1f=[];fg=...
分类:
编程语言 时间:
2014-11-20 13:33:49
阅读次数:
233
大家都知道在Linux下统计文本行数可以用wc -l 命令,例如:
-bash-3.2$ cat pif_install.log | wc -l
712
但在Windows下如何统计输出文本的行数呢,答案是使用find /c命令
1、统计包含某字符串的行数。例如在统计网络连接时的TIME_WAIT数等
netstat -an | find /i /c "TIME_WAIT...