搜索资源列表
deadlocks
- 操作系统课内实验部分,第3章,死锁的模拟的java实现。-operating system reverse experiment, Chapter 3, the simulation Deadlock java achieve.
java0011
- 这是一个java多线程示例代码,示例线程死锁-This a java multithreaded sample code and examples thread deadlock
死锁—哲学家吃饭问题
- 死锁—哲学家吃饭问题 java写的-Deadlock-food philosopher wrote java
philosopher(1.6)
- 哲学家进餐问题——Java语言实现 哲学家进餐问题是一个多线程运用的经典例子,涉及到线程同步/互斥,临界区访问问题以及一个避免死锁的解决方法。 有五个哲学家绕着圆桌坐,每个哲学家面前有一盘面,两人之间有一支筷子,这样每个哲学家左右各有一支筷子。 哲学家有2个状态,思考或者拿起筷子吃饭。如果哲学家拿到一只筷子,不能吃饭,直到拿到2只才能吃饭,并且一次只能拿起身边的一支筷子。一旦拿起便不会放下筷子直到把饭吃完,此时才把这双筷子放回原处。 如果,很不幸地,每个哲学家拿起
死锁检测模拟
- 死锁检测模拟程序-Deadlock Detection Simulation Program
Java4
- 每个使用关系型数据库的程序都可能遇到数据死锁或不可用的情况,而这些情况需要在代码中编程来解决 本文主要介绍与数据库事务死锁等情况相关的重试逻辑概念,此外,还会探讨如何避免死锁等问题,文章以DB2(版本9)与Java为例进行讲解。
java_threaddemo
- 哲学家就餐是一个经典的Java多线程编程的实例,这是图形版。涉及到线程同步与互斥,临界区访问问题以及避免死锁的方法。 -Dining philosophers is a classic multi-threaded Java programming examples, this is the graphics version. Related to thread synchronization and mutual exclusion, critical area to visit, as we
multithread2008
- Java的多线程,程序、进程和线程的概念,实现多线程的两种方式,线程同步的原理,线程的死锁,运用wait和notify来实现producer - consumer关系,线程终止的两种情况。-Java multi-threading, procedures, process and thread the concept of the realization of multi-threaded in two ways, the principle of simultaneous threads, t
Fixed_Dining_Philosophers
- 英国帝国理工学院电脑系多线程课程教学材料之九 ---- 哲学家晚餐范例(无死锁,需要引用到原问题的部分代码)-The version avoids the possibility of deadlock by making even numbered philosophers pick up the chopsticks in a different order from the rest. That is, left first rather than right first.
2
- 银行家c++算法实现功能,来防止死锁等问题,方便大家,及供参考-Bankers algorithm c++ functions, to prevent deadlock and so on, to facilitate, and for reference
java_threaddemo
- 哲学家就餐是一个经典的Java多线程编程的实例,这是图形版。涉及到线程同步与互斥,临界区访问问题以及避免死锁的方法。 -Dining Philosophers is a classic example of Java multi-threaded programming, it is graphic version. Related to thread synchronization and mutual exclusion, critical access issues and ways to
sdefsef
- 这是解决死锁问题的算发,如有雷同正常的,请大家原谅-the is
opoipi
- 避免资源死锁.doc 避免资源死锁.doc-Avoid resource deadlock. Doc avoid resource deadlock. Doc avoid resource deadlock. Doc
java.util.concurrent
- java.util.concurrent包的并发处理 Sun大神终于为我们这些可怜的小程序员推出了 java.util.concurrent工具包以简化并发完成。开发者们借助于此,将有效的减少竞争条件(race conditions)和死锁线程。concurrent包很好的解决了这些问题,为我们提供了更实用的并发程序模型。 -java.util.concurrent concurrent processing package for the Sun The Great God has f
deadlock
- 该代码是用JAVA编写的著名的线程死锁问题-The code is written in JAVA famous thread deadlock problem
banker
- 银行家算法,在操作系统中用于计算是否系统的资源请求会导致死锁-Banker' s algorithm, in the operating system used to calculate whether the resource request would cause a deadlock
BankerAlgorithmAvoidDeadlock
- 操作系统死锁避免算法模拟实现,其中将银行家与安全检测封装在不同的类当中,更为直观!-Deadlock avoidance algorithm to achieve the operating system simulation, in which bankers and safety testing will be encapsulated in different classes of them, more intuitive!
sisuo
- 用Java实现操作系统的死锁课程设计,可实现死锁的产生,避免,预防与解除,避免由银行家算法实现,界面优美,代码可读性好。而且本程序生成了可直接运行的.exe文件和可安装的程序,非常的方便实用-Java implementation of the operating system deadlock with curriculum design, the production can be realized deadlock, avoid, prevent and relieve, to avoid
Thread_ProducerConsumer
- java经典的线程示例代码,死锁\生产者,消费者模拟-sample code java classic thread, deadlock \ producers, consumers simulation
线程死锁示例
- 这是基于java语言编程的一个关于线程死锁问题的小Demo,运用DeadLock来解决线程中可能出现的死锁问题