虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

WAIT

  • ARP test mode. According to the idea we design the arithmetic for the key part, first the system sen

    ARP test mode. According to the idea we design the arithmetic for the key part, first the system sends a message to the target machine, and then system WAIT for the response. Once system receives a message, it starts to analyze the message, according to the message s parameter system judges whether the message satisfies the conditions. Once the message satisfies all the conditions, the system thinks the machine is sniffing, and adds this machine into the list of sniffing machines. On this basis the detection has done well, and at the same time we insert the result into the log database for inquire and analyze later.

    标签: the arithmetic According design

    上传时间: 2016-10-06

    上传用户:chongcongying

  • The DHRY program performs the dhrystone benchmarks on the 8051. Dhrystone is a general-performanc

    The DHRY program performs the dhrystone benchmarks on the 8051. Dhrystone is a general-performance benchmark test originally developed by Reinhold Weicker in 1984. This benchmark is used to measure and compare the performance of different computers or, in this case, the efficiency of the code generated for the same computer by different compilers. The test reports general performance in dhrystones per second. Like most benchmark programs, dhrystone consists of standard code and concentrates on string handling. It uses no floating-point operations. It is heavily influenced by hardware and software design, compiler and linker options, code optimizing, cache memory, WAIT states, and integer data types. The DHRY program is available in different targets: Simulator: Large Model: DHRY example in LARGE model for Simulation Philips 80C51MX: DHRY example in LARGE model for the Philips 80C51MC

    标签: general-performanc benchmarks Dhrystone dhrystone

    上传时间: 2016-11-30

    上传用户:hphh

  • 应用UNIX的fork()等系统调用

    应用UNIX的fork()等系统调用,编写一个c程序具有以下功能: a) 实现Shell的基本功能,包括有:打印提示符;接受和分析命令行(滤去无效的空格、tab符号以及换行符等);执行命令(要有出错处理;输入exit或者bye退出);返回父进程; b) 处理后台程序(不需要WAIT) c) 处理多行命令(分析命令行中的‘ ’并处理之) d)应用 dup(), pipe()系统调用具有输入输出重定向以及管道功能;

    标签: UNIX fork 系统调用

    上传时间: 2013-12-25

    上传用户:独孤求源

  • 信号量也称为信号锁

    信号量也称为信号锁,主要应用于进程间的同步和互斥,在用于互斥时,通常作为资源锁。信号量通常通过两个原子操作WAIT(P)和signal(V)来访问。WAIT操作使信号量的值+1,signal操作使信号量的值-1。本程序模拟了操作系统的pv操作

    标签: 信号量 信号

    上传时间: 2016-12-25

    上传用户:jjj0202

  • Java的多线程

    Java的多线程,程序、进程和线程的概念,实现多线程的两种方式,线程同步的原理,线程的死锁,运用WAIT和notify来实现producer - consumer关系,线程终止的两种情况。

    标签: Java 多线程

    上传时间: 2013-12-08

    上传用户:2467478207

  • 鈥?What Is a Thread? o The Thread Class o Simple Thread Examples 鈥?Problems with Multithreading

    鈥?What Is a Thread? o The Thread Class o Simple Thread Examples 鈥?Problems with Multithreading o What Goes Wrong? o Thread Names and Current Threads o Java s synchronized 鈥?Synchronizing Threads o Multiple Locks 鈥?The Dining Philosophers Problem o Deadlocks o A Solution to the Dining Philosophers Problem o Java s WAIT() and notify() o Dining Philosophers Example 鈥?Summary

    标签: Thread Multithreading Examples Problems

    上传时间: 2017-03-02

    上传用户:kristycreasy

  • 应用UNIX的fork()等系统调用

    应用UNIX的fork()等系统调用,编写一个c程序具有以下功能: a) 实现Shell的基本功能,包括有:打印提示符;接受和分析命令行(滤去无效的空格、tab符号以及换行符等);执行命令(要有出错处理;输入exit或者bye退出);返回父进程; b) 处理后台程序(不需要WAIT) c) 处理多行

    标签: UNIX fork 系统调用

    上传时间: 2014-12-07

    上传用户:gtf1207

  • java面试笔试题大汇总 ~很全面 java面试笔试题大汇总 第一

    java面试笔试题大汇总 ~很全面 java面试笔试题大汇总 第一,谈谈final, finally, finalize的区别。   最常被问到。   第二,Anonymous Inner Class (匿名内部类) 是否可以extends(继承)其它类,是否可以implements(实现)interface(接口)?   第三,Static Nested Class 和 Inner Class的不同,说得越多越好(面试题有的很笼统)。   第四,&和&&的区别。 这个问得很少。     第五,HashMap和Hashtable的区别。   常问。     第六,Collection 和 Collections的区别。   你千万别说一个是单数一个是复数。     第七,什么时候用assert。   API级的技术人员有可能会问这个。     第八,GC是什么? 为什么要有GC?   基础。     第九,String s = new String("xyz") 创建了几个String Object?     第十,Math.round(11.5)等於多少? Math.round(-11.5)等於多少?     第十一,short s1 = 1 s1 = s1 + 1 有什么错? short s1 = 1 s1 += 1 有什么错?   面试题都是很变态的,要做好受虐的准备。     第十二,sleep() 和 WAIT() 有什么区

    标签: java 笔试题

    上传时间: 2017-05-20

    上传用户:坏坏的华仔

  • 4、多线程有几种实现方法,都是什么?同步有几种实现方法,都是什么? 答:多线程有两种实现方法

    4、多线程有几种实现方法,都是什么?同步有几种实现方法,都是什么? 答:多线程有两种实现方法,分别是继承Thread类与实现Runnable接口 同步的实现方面有两种,分别是synchronized,WAIT与notify

    标签: 实现方法 多线程

    上传时间: 2017-05-25

    上传用户:dianxin61

  • 利用java 模拟多线程 notify()

    利用java 模拟多线程 notify() ,WAIT(),notifyAll(), 通过买票的实例来模拟。

    标签: notify java 模拟 多线程

    上传时间: 2013-12-15

    上传用户:牛布牛