搜索资源列表
pipedoc
- 管道(Pipe)实际是用于进程间通信的一段共享内存,创建管道的进程称为管道服务器,连接到一个管道的进程为管道客户机。一个进程在向管道写入数据后,另一进程就可以从管道的另一端将其读取出来。匿名管道(Anonymous Pipes)是在父进程和子进程间单向传输数据的一种未命名的管道,只能在本地计算机中使用,而不可用于网络间的通信。-pipes (Pipe) for the actual inter-process communication for shared memory, the creati
sharesystem
- 一个VC完整程序~NET SHARE 使网络用户可以使用某一服务器上的资源。 当不带选项使用本命令 时,它会列出该计算机上正在被共享的所有资源。对于每一种资源,Windows 都 会报告其设备名或路径名,以及与之相关的描述性注释。-a complete VC-NET SHARE procedures so that users can use a server resources. When the non-use of the option orders, it will list t
p2p1.rar
- 基于P2P网格的视频点播自适应性研究,在此与各位网友分享了。,Grid-based P2P video-on-demand adaptive research, in this with you friends shared.
BA
- 系统网络拓扑结构采用共享总线型,大型网络控制器NCE通过BACnet MS/TP现场总线连接下位的小型多功能DDC控制器FEC,实现数据共享和分散控制-System network topology using a shared bus-based, large-scale network controller NCE through the BACnet MS/TP field bus to connect the next bit of small multifunctional DDC c
UML2.0
- UML for Java Programmers中文共享版 (正式中文共享版 Ver 1.0) -UML for Java Programmers中文sharing Edition (shared version of the official Chinese Ver 1.0)
xuqiuwendang
- 这是软件工程中需求分析常用到的文档,有很多类型的文档和说明,共享下-This is a software engineering used in the needs analysis of the documents, there are many types of documents and annotations, shared under the
UMLforJP
- UML for Java Programmers 中文共享版-UML for Java Programmers中文shared version
SharedMemory
- Shared Memory可以讓兩個不同程序,共享相同數據。-Shared Memory for two different procedures, share the same data.
MIT.Press.Using.OpenMP.Portable.Shared.Memory.Para
- OpenMp内存共享模型下的并行计算的使用说明-OpenMp parallel computing instructions for use
335867172239
- 随着计算机网络的高速发展,信息化社会的逐步深入,信息已经成为生活重要因素,为了能够有效简洁方便安全共享的管理好自己的信息,利用计算机技术来管理个人通讯信息已经不是什么希奇的事了。本文将利用JSP语言设计一个多用户的个人通讯信息管理系统。它是基于C/S服务模式跨平台的JSP技术《个人通讯录管理系统》。个人通讯录管理系统的设计在一定程度上实现了计算机的智能化的应用,并最终达到个人通讯信息的共享,体现个人通讯信息的电子化效果,便于管理和更新。整个程序的开发过程和设计能够在一定意义上体现出计算机软件设计
myns2_talk_2006
- ns2的学习资料,与大家共享,共同学习,共同进步!-ns2 learning materials, with everyone sharing, shared learning and common progress!
bbs
- BBS需求规格说明书,共享给有需要的朋友-BBS requirements specification, shared with a friend in need
posix_fifo_and_shared_memory
- fsmlabs公司提供的有关实时管道以及共享内存IO编程的API接口的有关资料,很详细,学习相关内容的好资料-fsmlabs provided by the real-time IO pipeline and shared memory programming API interfaces relevant information in great detail, learning good information on relevant content
keshe
- 在unix环境下用c语言实现进程间通信(读写者问题,读写者不能同时进入共享区)-In the unix environment, with the c language to achieve inter-process communication (the problem of reading and writing, reading and writing were not also enter the shared area)
Inter_process_communication
- 进程间通信 包括管道,消息队列,共享内存-Inter-process communication, including pipes, message queues, shared memory
lingyuqudongsheji
- 领域驱动设计 精简版本。模型驱动设计的基本构成要素 分层架构 面向深层理解的重构 共享内核 领域驱动设计新进展-Streamlined version of the domain-driven design. Model-driven design of the basic constituent elements of a layered architecture for the reconstruction of the deep understanding of share
naven
- 台湾IT界大牛,深入浅出MFC作者侯捷,侯捷做客雅虎,深入浅出的分享了他在C++/OO/Template 以及Design Pattern方面的经验,这是他在雅虎的讲座心得-naven.pdf-Taiwan' s IT sector, large cattle, everyday MFC by Hou Jie, Hou Jie guest Yahoo, in simple terms, he shared C++/OO/Template and Design Pattern experie
LabVIEW
- LabVIEW为创建分布式应用提供了多种多样的技术接口。LabVIEW 8中引入的共享变量为简化编程应用向前迈出了重大一步。本文将介绍共享变量,并讨论LabVIEW 8.20和LabVIEW 8.5中它的特征和性能。-LabVIEW for creating distributed applications provide a wide range of technical interfaces. LabVIEW 8 shared variable introduced to simplify
201049
- 一个简单的使用了共享内存映射的例子,运行两个实例看看就知道,没有什么特别-A simple to use shared memory mapping example, run two instances of a look, we know that nothing special
CPP-use-shared-memory-
- C++ 使用共享内存实现进程间通信。 文件映射是一种实现进程间单向或双向通信的机制。它允许两个或多个本地进程间相互通信。为了共享文件或内存,所有的进程必须使用相同的文件映射的名字或是句柄。 为了实现共享文件,第一个进程先调用CreateFile方法。接下来调用CreateFileMapping方法来创建一个文件映射对象。并为文件映射指明一个句柄和名称。由于事件,信号,互斥对象和文件映射等这些内核对象都共享同一个名字空间,所以如果这个名字和其他一个对象的名称重名的话那么将创建失败