CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 同步

搜索资源列表

  1. ThreadSync01

    0下载:
  2. 当你在程序中使用多线程时,这经常会用到,而且这些线程需要同时访问同一个资源时,这个可能性很大,这时候你就需要用到线程同步技术。有些线程以只读方式访问资源,我们叫它ReadThread,而有些线程却需要对资源进行写入,我们叫它WriteThread,我们暂时先这样称呼。如果一个线程对资源的访问是读写方式,我们把它看作是WriteThread。 -when you process multiple threads, which are often used, but these threads
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:7470
    • 提供者:周将华
  1. 分路fenlu 12

    0下载:
  2. 这是一个采集分路程序,用来对两路信号进行分路。有同步标志用于检测同步.-This is a collection shunt procedures used to conduct two-way signal splitter. There are signs for detecting synchronization synchronization.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:44775
    • 提供者:赖卫东
  1. ZBT SRAM控制器参考设计_verilog_xilinx

    0下载:
  2. ZBT SRAM控制器参考设计,xilinx提供,(ZBT SRAM是一种高速同步SRAM)-ZBT SRAM controller reference design for Xilinx (ZBT SRAM, a high-speed synchronous SRAM)
  3. 所属分类:VHDL编程

    • 发布日期:2008-10-13
    • 文件大小:36470
    • 提供者:陈旭
  1. Communication_USART

    0下载:
  2. 本程序是用于通用同步和异步串行接收器和转发器(USART),使用中断方式异步接收和发送数据通信源的程序文件。-this procedure is common for serial synchronous and asynchronous receiver and transponder (USARTs), the use of asynchronous interrupt receive and transmit data communication source program files.
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2008-10-13
    • 文件大小:11991
    • 提供者:磊元
  1. 实验报告3

    1下载:
  2. 进程是程序在一个数据集合上运行的过程,进程是并发进行的,也即系统中的多个进程轮流的占用处理器运行。 我们把若干个进程都能进行访问和修改的那些变量称为公共变量。由于进程是并发执行的,所以,如果对进程访问公共变量不加限制,那么就会产生“与时间有关”的错误,即进程执行后,所得到的结果与访问公共变量的时间有关。为了防止这类错误,系统必须要用同步机构来控制进程对公共变量的访问。一般说,同步机构是由若干条语句——同步原语——所组成。本试验要求学生模拟PV操作同步机构的实现,模拟进程的并发执行,了解进
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:121826
    • 提供者:纪丽平
  1. 平缝机控制代码

    2下载:
  2. 平缝机的单片机伺服控制系统源代码。本程序为用单片机控制永磁同步电机的低成本方案-sewing machine SCM servo control system source code. The procedures for the use of SCM control PMSM low-cost programs
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2008-10-13
    • 文件大小:212731
    • 提供者:nt
  1. time_synch

    0下载:
  2. Wince网络时间同步程序。功能为将终端本地时间与网络上某台服务器的时间同步。-Wince network time synchronization procedures. Terminal will function as local time with a network time server synchronization.
  3. 所属分类:Windows CE

    • 发布日期:2008-10-13
    • 文件大小:711199
    • 提供者:赖先生
  1. ntp-4.1.2-0.rc1.2.src

    0下载:
  2. ntp服务器是一款时间服务器,用于同步各地时间 该为ntp的rpm源代码-npt time server is a server for synchronization around the time of the npt rpm source code
  3. 所属分类:Internet/网络编程

    • 发布日期:2008-10-13
    • 文件大小:2171013
    • 提供者:ssss
  1. Chauffeur_Conductor

    0下载:
  2. 本代码实现了操作系统中的司机和售票员同步问题,应用了VC中的信号灯,是我学完P、V操作后写的,希望于大家分享。-the code of the operating system and the driver and conductor of the bus synchronization, application of the VC's appearance, I studied End P, V written after the operation, which we hope to
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:12019
    • 提供者:陈锋
  1. vc串口通讯

    1下载:
  2. 用visual c++写的串口通信程序,有rs232,同步串口通信。-with visual c write the serial communication procedures, RS232, synchronous serial communication.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:3559817
    • 提供者:吴本涛
  1. ListOperate

    0下载:
  2. 该程序运用线程的思想来操作一个链表,对链表的动作有增加和删除。增加节点和删除节点分别在两个线程里,这两个线程通过事件来进行同步,每次增加10个节点、删除5个节点。-use of the program's ideological threads to operate a chain and the right Chain movements had increased and removal. Additional nodes and delete nodes, in two separ
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:34045
    • 提供者:罗将神
  1. Philosopher(new)

    0下载:
  2. 这是一道经典的线程同步问题——哲学家吃饭问题。这里结合了win32使得这个问题可视化了-This is a classic thread synchronization -- philosopher food problem. Win32 here combination of this makes the issue of visualization
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:17079
    • 提供者:Freedom
  1. extremedb2.3linux

    0下载:
  2. eXtremeDB完全工作在主内存中,不基于文件系统,减少了诸如磁盘访问、文件I/O操作、缓存同步等开销,使得eXt remeDB的存取速度提高到极限;通过数据库定义语言面向应用系统定制的API使得eXtremeDB能够面向应用最优化;事 件触发、字段优先级等特色使得eXtremeDB管理实时数据时具有确定性。   eXtremeDB根据用户需求定义的API使得eXtremeDB与应用程序无缝集成。因此,eXtremeDB不仅在系 统中嵌入,而且“嵌入”在应用程序中,是一种真正的嵌入式实时
  3. 所属分类:数据库编程

    • 发布日期:2008-10-13
    • 文件大小:2304508
    • 提供者:张晓
  1. czrf

    0下载:
  2. 本程序是针对同步诱导屏所编制的编辑显示软件。 里面通过swflash.ocx实现了对同步屏的各种动画方式的替代,从而简化了文本运动方式的程序控制。 我的程序都是RAD思想,不是什么好的源码,只对读者提供一个控制方法的参考。希望能有朋友互相交流。-against this procedure is induced screen simultaneously prepared by the editors display software. Inside swflash.ocx achiev
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2192890
    • 提供者:余灿基
  1. 信号

    0下载:
  2. 这是一个用信号实现父子进程之间简单通讯的程序,要求实现父子进程同步,用信号实现.可能还有待改进的地方-This is a signal achievement with his son communications process between simple procedure requires the synchronization process and his son, using signal achievement. There may be room for improvement
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:3191
    • 提供者:亿摆
  1. 第七章 进程同步

    0下载:
  2. 《操作系统概念》第六版中文版7,相信一定对你有很大帮助1-"operating system, the concept of" the sixth edition of the Chinese version 7, I believe that you are a great help!
  3. 所属分类:开发工具

    • 发布日期:2008-10-13
    • 文件大小:1437293
    • 提供者:sun
  1. ToAM

    0下载:
  2. 一种改进的节点间测距算法,不需要节点的时间同步,开发环境:tinyos+cygwin,isp烧写下载-an improved algorithm ranging between nodes, the nodes need time synchronization, development environment : tinyos cygwin, burning downloaded isp
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2008-10-13
    • 文件大小:3671
    • 提供者:任绘锦
  1. winsocket++

    0下载:
  2. TCP/IP Winsock编程实例,利用Winsock编程由同步和异步方式,同步方式逻辑清晰,编程专注于应用,在抢先式的多任务操作系统中(WinNt、Win2K)采用多线程方式效率基本达到异步方式的水平,应此以下为同步方式编程要点进行快速通信 -TCP / IP Winsock programming examples, the use of Winsock programming from synchronous and asynchronous, synchronous mode l
  3. 所属分类:界面编程

    • 发布日期:2008-10-13
    • 文件大小:2951
    • 提供者:sxy
  1. FileMonitorSystem

    0下载:
  2. 这是一个文件监视系统的源代码,主要用于文件的同步监视-This is a document surveillance system source code, mainly for the surveillance documents simultaneously
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:66563
    • 提供者:王哲
  1. feng1

    0下载:
  2. 此程序是解决同步与互斥的程序源代码,同时也是通过进程,和选择不同的进程,如消费者和生产者,输入不同的字符,来决定将执行哪一个进程。-this procedure is to solve and coordinate the program's source code, but also through the process, and the choice of different processes, such as consumers and producers that the
  3. 所属分类:界面编程

    • 发布日期:2008-10-13
    • 文件大小:7250
    • 提供者:张英子
« 1 2 ... 45 46 47 48 49 50»
搜珍网 www.dssz.com