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

搜索资源列表

  1. SeriesCom

    0下载:
  2. 串口通信库,包装了Linux的串口通信,分为了阻塞和非阻塞的不同read函数。 -Serial communication library wraps the Linux serial communication, and divided into blocking and nonblocking read function.
  3. 所属分类:Linux Network

    • 发布日期:2017-04-13
    • 文件大小:3081
    • 提供者:yegang
  1. unblock_socket-udp-select

    0下载:
  2. 该程序是UDP方式的非阻塞网络socket通信代码,是我做语音设计时用的,供大家参考。-The program is a non-blocking UDP mode network socket communication code, I do voice design, for your reference.
  3. 所属分类:Linux Network

    • 发布日期:2017-11-10
    • 文件大小:2860
    • 提供者:enchen
  1. com

    0下载:
  2. windows串口编程,包括读写,异步,非阻塞等-windows serial port programming, including read and write, asynchronous, non-blocking, etc.
  3. 所属分类:Com Port

    • 发布日期:2017-04-08
    • 文件大小:198604
    • 提供者:wurei
  1. How-to-comport

    0下载:
  2. 在linux如何读写串口,有几种模式阻塞,非阻塞,IO复用,异步模式-In linux how to read and write serial port, there are several models obstruction, non-blocking, IO multiplexing, asynchronous mode, etc.
  3. 所属分类:Embeded Linux

    • 发布日期:2017-03-30
    • 文件大小:80240
    • 提供者:jiangyong
  1. linuxdriver_code_tool

    0下载:
  2. 本书是一本介绍Linux设备驱动开发理论、框架与实例的书,本书以Linux 2.6版本内核为蓝本,详细介绍自旋锁、信号量、完成量、中断顶/底半部、定时器、内存和I/O映射以及异步通知、阻塞I/O、非阻塞I/O等Linux 设备驱动理论;字符设备、块设备、TTY设备、I2C设备、LCD设备、音频设备、USB设备、网络设备、PCI设备等Linux设备驱动的架构和框架中各个复杂数据架构和函数的关系,并讲解了大量Linux驱动开发的大量实例,使读者能够独立开发各类Linux设备驱动。-This book
  3. 所属分类:Driver Develop

    • 发布日期:2017-06-16
    • 文件大小:25064728
    • 提供者:keke
  1. 20081015111532911ionio

    0下载:
  2. 使用JAVA I/O和 NI/O编写的两种网络ECHO服务器,用以学习两种IO的不同编程方法,体验基于阻塞与非阻塞IO开发高性能网络应用程序的具体实例.Java平台传统的I/0系统基于byte(字节)和Stream(数据流)。这种模式下的I/O 操作以字节为单位,以流的方式处理数据。而NIO( New I/O )以块的方式处理数据,它的系统操作面向Buffer(缓冲),Channel(通道)和Selector(选择器),不再是字节,这种模式利用了操作系统管理内存和文件的方式,并将一些耗时操作直接
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-04-13
    • 文件大小:2350
    • 提供者:郭为
  1. Verilog--shiyanbaogao

    0下载:
  2. 有实验结果,用MOSIN6编写的,是Verilog HDL语言实现的. 练习三 利用条件语句实现计数分频时序电路 实验目的: 1. 掌握条件语句在简单时序模块设计中的使用; 2. 学习在Verilog模块中应用计数器; 3. 学习测试模块的编写、综合和不同层次的仿真。 练习四 阻塞赋值与非阻塞赋值的区别 实验目的: 1. 通过实验,掌握阻塞赋值与非阻塞赋值的概念和区别; 2. 了解阻塞赋值与非阻塞赋值的不同使用场合; 3. 学习测试模块的编写、综合和不同层
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-03-29
    • 文件大小:15937
    • 提供者:盼盼
  1. relay

    0下载:
  2. linux源码,利用状态机,实现io非阻塞操作-linux-source, using a state machine, to achieve non-blocking io operations
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-08
    • 文件大小:952
    • 提供者:qujianning
  1. relay2

    0下载:
  2. linux源码,利用状态机实现io非阻塞操作 版本2,用结构体保存中间状态,可实现状态恢复-linux source code, the use of state machine to achieve non-blocking io operations version 2, using the structure to preserve intermediate state, the status of the restoration can be achieved
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-03
    • 文件大小:1024
    • 提供者:qujianning
  1. on_chip_bus

    0下载:
  2. 用基于systemcc c++作为建模语言,对芯片的片上总线主设备,从设备,仲裁器,和总线本身进行建模。给出的从设备包括快速存储器,慢速存储器,和通用串口;主设备包括直接型主设备,阻塞型设备,非阻塞型主设备;另外还有总线本身和总线仲裁器。-Based systemcc c++ As a modeling language, on-chip-chip bus masters, from the equipment, arbiter, and bus modeling itself. Given f
  3. 所属分类:Network Security

    • 发布日期:2017-04-02
    • 文件大小:27887
    • 提供者:fanmin
  1. EqueueDemo

    0下载:
  2. 这是书上的代码,支持阻塞与非阻塞模型且线程安全的环形缓冲的设计与实现---环形缓冲,攻克高级缓冲技术的关键,供大家参考-This is the code book to support non-blocking model with obstructive and thread-safe Ring Buffer Design and Implementation--- ring buffer, buffer technology to capture high-level key, for yo
  3. 所属分类:Internet-Socket-Network

    • 发布日期:2017-04-04
    • 文件大小:13991
    • 提供者:Lucy
  1. fdsdf

    0下载:
  2. 支持阻塞与非阻塞模型且线程安全的环形缓冲的设计与实现-In support of obstruction and non-blocking model and thread-safe ring buffer Design and Implementation
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:14970
    • 提供者:邹宇鹏
  1. Code

    0下载:
  2. 事件内核对象、关键代码段(临界区)的讲解,以及在多线程同步中的应用。在Windows下编写基于消息的网络应用程序,掌握阻塞与非阻塞网络程序的编写,理解在Windows平台下,采用异步选择机制可以提高网络应用程序的性能。-Event kernel object, the key to the code segment (critical zone) explain, as well as the synchronization of multi-threaded applications. Pre
  3. 所属分类:CSharp

    • 发布日期:2017-04-23
    • 文件大小:40809
    • 提供者:wsmiao
  1. client

    0下载:
  2. 客户端的开发小程序。linux中各shell命令的运用,使用消息队列和通信进程-The development of client applets. linux in order to use the shell, use the message queue and communication process
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-28
    • 文件大小:1431
    • 提供者:ada
  1. client

    0下载:
  2. linux 环境下的socket编程客户端-linux environment client socket programming
  3. 所属分类:Linux Network

    • 发布日期:2017-03-30
    • 文件大小:1280
    • 提供者:小军
  1. NonblockingAssignment

    0下载:
  2. 详细介绍verilog语言中的阻塞和非阻塞问题-Detailed Verilog language obstructive and non-blocking problem
  3. 所属分类:Communication

    • 发布日期:2017-04-26
    • 文件大小:52602
    • 提供者:JET
  1. 15

    0下载:
  2. 能够对串口进行读写,监视的类。利用线程实现了非阻塞调用-thread
  3. 所属分类:Internet-Socket-Network

    • 发布日期:2017-04-27
    • 文件大小:39407
    • 提供者:宋欢
  1. R_and_Wserial_port

    0下载:
  2. 能够对串口进行读写,监视的类。利用线程实现了非阻塞调用-Be able to read and write to the serial port to monitor the class. Achieve a non-blocking use of the thread calling
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-26
    • 文件大小:35986
    • 提供者:修卓
  1. LINUX下TCP编程服务端跟客户端例子

    3下载:
  2. TCP client and TCP server for Linux!
  3. 所属分类:Internet/网络编程

    • 发布日期:2012-11-21
    • 文件大小:3991
    • 提供者:svetozar
  1. LANShield2.0

    0下载:
  2. LANShield是一款本人自己写的网络防火墙程序,LAN Shield 2.0.rar为主程序源码,开发环境为VS2005;MyFireWallLSP.rar为过滤模块;   Server为服务器源码,Java编写,非阻塞模式。      软件功能:   1.有效拦截局域网内的ARP攻击,并具有保护网关功能   2.可配合服务器端,更有效管理局域网网络   3.自带应用层过滤模块,有效控制本机进程的网络访问   4.自带攻击模块,用于反击,包含所有AR
  3. 所属分类:Firewall-Security

    • 发布日期:2017-05-09
    • 文件大小:1946985
    • 提供者:agang
« 1 2 3 4 56 7 8 9 10 ... 15 »
搜珍网 www.dssz.com