搜索资源列表

  1. c++

    0下载:
  2. 很实用的一本教程,尤其适用于刚接触c++的读者-is a practical guide, especially in the fourth year of c readers
  3. 所属分类:开发工具

    • 发布日期:2008-10-13
    • 文件大小:635693
    • 提供者:韩寒
  1. ADS Introductory Workbook

    0下载:
  2. ADS教程 在这一章里,将介绍ARM 开发软件ADS(ARM Developer Suite)。通过学习如何在CodeWarrior IDE 集成开发环境下编写,编译一个工程的例子,使读者能够掌握在ADS 软件平台下开发用户应用 程序。本章还描述了如何使用AXD 调试工程,使读者对于调试工程有个初步的理解,为进一步的 使用和掌握调试工具起到抛砖引玉的作用-ADS Directory in this chapter, will intro
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:160474
    • 提供者:万祥兵
  1. 01a

    0下载:
  2. 数学建模-公交车调度问题论文(维普阅读器)-mathematical modeling-bus scheduling problem thesis (Wei-pu readers)
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:3022051
    • 提供者:钟天
  1. 后台数据库管理源代码

    0下载:
  2. 用户名、密码和权限存放在本案例数据库中的admin表,读者可以在这个表 中添加新的用户。-user name, password and authority, in this case, stored in the database admin table, and readers can at this table, add new users.
  3. 所属分类:Internet/网络编程

    • 发布日期:2008-10-13
    • 文件大小:403181
    • 提供者:小强
  1. read-first

    0下载:
  2. 读者优先问题。操作限制:1)写-写互斥;2)读-写互斥;3)读-读允许; 读者优先的附加限制:如果一个读者申请进行读操作时已有另一读者正在进行读操作,则该读者可直接开始读操作。-readers priority. Operating restrictions : a) write-write contradict; 2) read-write mutually exclusive; 3) Reading-Reading allowed;
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:2533
    • 提供者:橙子
  1. write_first

    0下载:
  2. 写者优先问题。操作限制:1)写-写互斥;2)读-写互斥;3)读-读允许;写者优先的附加限制:如果一个读者申请进行读操作时已有另一写者在等待访问共享资源,则该读者必须等到没有写者处于等待状态后才能开始读操作。-wrote priority issues. Operating restrictions : a) write-write contradict; 2) read-write mutually exclusive; 3) Read
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:2518
    • 提供者:橙子
  1. 0.0

    0下载:
  2. 程序说明书 一. 各模块的功能: readtxt(),读读者文件writetxt(),写读者文件addreader(reader s) ,添加读者delreader(int number),删除读者searchreader(int number),查找读者readerdata() ,读者数据管理readbtxt(),读图书文件writebtxt(),写图书文件addbook(libook s),添加图书delbook(int numbe
  3. 所属分类:界面编程

    • 发布日期:2008-10-13
    • 文件大小:24872
    • 提供者:闫斌
  1. final.c

    0下载:
  2. 读者和写者,有关操作系统课程设计的 进程和线程,我急需生产者和消费者-readers and writing, the operating system of curriculum design process and thread, I hasten to producers and consumers
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:1081
    • 提供者:0030
  1. 图书馆操作系统

    0下载:
  2. 本系统可以被管理员、图书馆工作人员、和读者三种身份的人员通过帐号和密码以不同身份登陆到本系统,并实现各自的功能操作。-Intruction: Administrator, worker in library and readers can log in this system according to the user name and password respectly,then do some operations granted
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:11605
    • 提供者:陈宏轩
  1. About-the-Technical-Editor

    0下载:
  2. Sams Teach Yourself Game Programming in 24 Hours demystifies game programming by providing clear, practical lessons using C/C++, the industry standard in game programming. The book focuses on the Windows API to
  3. 所属分类:软件工程

    • 发布日期:2024-05-15
    • 文件大小:32768
    • 提供者:cdj999
  1. reader_and_writer

    0下载:
  2. 操作系统中,读者和写者问题的解决方案。调用windows API函数,清晰明了。-Operating system, readers and writers solution to the problem. Call the windows API function, clarity.
  3. 所属分类:Windows编程

    • 发布日期:2024-05-15
    • 文件大小:4096
    • 提供者:thunder sea
  1. reader_writer

    0下载:
  2. 读者-写者问题的读写操作限制(包括读者优先和写者优先) 写-写互斥:不能有两个写者同时进行写操作 读-写互斥:不能同时有一个线程在读,而另一个线程在写。 读-读允许:可以有一个或多个读者在读。-Readers- read and write operations to write the problem of constraints (including the readers of priority and writin
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-15
    • 文件大小:2048
    • 提供者:JK
  1. readerwriter

    0下载:
  2. 实验一 用信号量来实现读者-写者问题 (一) 实验目的 理解进程(或线程)及信号量的概念 (二) 实验内容 1、定义一个数据缓存buffer及用于实现同步互斥的信号量。 2、定义一个读者函数: 当有写者在占用buffer时,读者应该等待,直到写者不再使用该buffer。 当有其他读者在占用buffer时,读者可对buffer进行读取操作。 当buffer中有数据时,则从其中读取一个数据,并显示然后退
  3. 所属分类:软件工程

    • 发布日期:2024-05-15
    • 文件大小:122880
    • 提供者:镡皓琳
  1. Wiegand--readers-and-access-

    0下载:
  2. 读卡器与门禁的韦根通讯程序,这个是WG26的,改下就可当WG32,WG34用.C51单片机读写-Wiegand card readers and access control communication procedures, this is WG26, the change can be when the next WG32, WG34 use. C51 microcontroller to read and write
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2024-05-15
    • 文件大小:2048
    • 提供者:jasonlau
  1. thread

    0下载:
  2. 实验总体要求,使用MFC相关的功能函数来模拟经典进程互斥和同步问题 生产者和消费者 读者和写者 哲学家就餐问题-The general requirements of experiments, the use of MFC function to simulate the functions related to the classical problem of mutual exclusion and synchroniz
  3. 所属分类:进程与线程

    • 发布日期:2024-05-15
    • 文件大小:1024
    • 提供者:m47
  1. TC300-350-400-450-500-550-DLL-SDK

    0下载:
  2. SDK for TC series anvis readers
  3. 所属分类:其他小程序

    • 发布日期:2024-05-15
    • 文件大小:253952
    • 提供者:moyd2k3
  1. Readers-that-read--write-preferred

    0下载:
  2. 读者写着问题,写者优先,当多个读者在等待前面的读者时,有写者来,写者优先,当前读者读完,写者进入,-Readers that read, write preferred
  3. 所属分类:进程与线程

    • 发布日期:2024-05-15
    • 文件大小:2048
    • 提供者:别样的天空
  1. MFRC523---chip-card-readers-

    0下载:
  2. NXP公司MFRC523非接触式IC卡读卡机芯片源代码-The NXP MFRC523 non-contact IC chip card readers source code
  3. 所属分类:其他嵌入式/单片机内容

    • 发布日期:2024-05-15
    • 文件大小:196608
    • 提供者:jinshan
  1. Rfid-Readers-and-antennas

    0下载:
  2. 读写器及天线,不同的电子标签及封装,读写器的主要功能-Readers and antennas, different electronic labeling and packaging
  3. 所属分类:编程文档

    • 发布日期:2024-05-15
    • 文件大小:1625088
    • 提供者:Paco
  1. OEM_File

    0下载:
  2. SDK for Alian Readers and integration with C# sharp free coding
  3. 所属分类:其他小程序

    • 发布日期:2024-05-15
    • 文件大小:3308544
    • 提供者:adytc
« 12 3 4 5 6 7 8 9 10 ... 50 »

源码中国 www.ymcn.org