CCH07ProcessSynchronization(操作系统).pptVIP

  • 4
  • 0
  • 约2.99万字
  • 约 132页
  • 2017-05-30 发布于北京
  • 举报
Module 7: Process Synchronization Background(背景) The Critical-Section Problem (临界区问题) Synchronization Hardware (同步的硬件实现) Semaphores (信号量) Classical Problems of Synchronization(经典同步问题) Monitors (管程) Java Synchronization (Java中的同步机制) Synchronization in Solaris 2 (Solaris 2的同步机制) Synchronization in Windows NT (Windows NT的同步机制) Background public class BoundedBuffer { public void enter(Object item) { // producer calls this method } public Object remove() { // consumer calls this method } // potential race condition on count private volatile int count; } Ba

文档评论(0)

1亿VIP精品文档

相关文档