搜索资源列表
pipedoc
- 管道(Pipe)实际是用于进程间通信的一段共享内存,创建管道的进程称为管道服务器,连接到一个管道的进程为管道客户机。一个进程在向管道写入数据后,另一进程就可以从管道的另一端将其读取出来。匿名管道(Anonymous Pipes)是在父进程和子进程间单向传输数据的一种未命名的管道,只能在本地计算机中使用,而不可用于网络间的通信。-pipes (Pipe) for the actual inter-process communication for shared memory, the creati
Postmaster的Shared Memory结构
- Postmaster的Shared Memory结构.doc
posi-cmulti-threaded
- posic多线程编程学习笔记整理,包含了线程的基础知识,多线程解决方法:信号灯,互斥量,条件变量,共享内存;内容详细-multi-threaded programming posic finishing study notes, including a basic knowledge of threads, multi-threaded solution: traffic lights, the volume of mutually exclusive condition variables,
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
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
Inter_process_communication
- 进程间通信 包括管道,消息队列,共享内存-Inter-process communication, including pipes, message queues, shared memory
201049
- 一个简单的使用了共享内存映射的例子,运行两个实例看看就知道,没有什么特别-A simple to use shared memory mapping example, run two instances of a look, we know that nothing special
eway
- 共享内存的MVB与LON总线网关设计Shared memory of the MVB with the LON-bus Gateway-Shared memory of the MVB with the LON-bus Gateway
An-Introduction-to-Parallel-and-Vector-Scientific
- In this text, students of applied mathematics, science and engineering are introduced to fundamental ways of thinking about the broad context of parallelism. The authors begin by giving the reader a deeper understanding of the issues through a genera
linux-multi-thread-synchronization
- linux多线程同步的方法 在线程对共享相同内存操作时,就会出现多个线程对同一资源的使用,为此,需要对这些线程进行同步,以确保它们在访问共享内存的时候不会访问到无效的数值。-linux multi-thread synchronization Threads share the same memory operation, there will be multiple threads use the same resources to do this, you need to synch
APCOMPARISONPOFPTWOPPARADIGMSPFORPDISTRIBUTEDPSHA
- This paper compares two paradigms for Distributed Shared Memory on loosely coupled computing systems: the shared data-object model as used in Orca, a programming language specially designed for loosely coupled computing systems and the Shared V
ACE_study_file
- ACE自适配通信环境(ADAPTIVE Communication Environment)是可自由使用、开放源码的面向对象(OO)构架(framework),它实现了许多用于并发通信软件的核心模式。ACE提供了一组丰富的可重用C++包装外观(wrapper facade)和构架组件,可跨多种平台完成通用的通信软件任务,其中包括:事件多路分离和事件处理器分派、信号处理、服务初始化、进程间通信、共享内存管理、消息路由、分布式服务动态(重)配置、并发执行和同步,等等。 -ACE ADAPTIVE C
Wiley.UPC.Distributed.Shared.Memory.Programming.J
- Important and fundamental book for UPC parallel computing
zhucunmoni
- 主存的分配和回收的实现是与主存储器的管理方式有关的。所谓分配,就是解决多道作业或多进程如何共享主存空间的问题。所谓回收,就是当作业运行完成时将作业或进程所占的主存空间归还给系统。在可变分区管理方式下,采用最先适应算法实现主存空间的分配和回收。-Main memory allocation and recovery with the main memory to achieve management related.The so-called distribution, is to solve t
MUhr
- 通过共享内存和Semaphor进行进程间的通信,进行信息的读写-Interprocess communication through shared memory and Semaphor information to read and write
WTN27_Shared-Memory-Network
- VxWorks技术文档WTN27,主要讲解VxWorks 的Shared-Memory Network-The VxWorks technical documentation WTN27, mainly on the VxWorks Shared-Memory Network
Introduction-of-Xilkernel_API
- Xilkernel是Xilinx公司提供的用于EDK系统的小型、模块化的操作系统,支持MicroBlaze、PowerPC405以及PowerPC440处理器。支持可移植操作系统接口(POSIX)。 Xilkernel功能函数包括:线程管理、信号量、消息队列、共享内存、互斥锁、动态内存管理、软件定时、用户层中断处理API等几个方面。 -Xilkernel Xilinx EDK system for small, modular operating system, to support t
DISTRIBUTED-SHARED-MEMORY-2021-22-23
- a presentation on sisributed shared memory
CPP-use-shared-memory-
- C++ 使用共享内存实现进程间通信。 文件映射是一种实现进程间单向或双向通信的机制。它允许两个或多个本地进程间相互通信。为了共享文件或内存,所有的进程必须使用相同的文件映射的名字或是句柄。 为了实现共享文件,第一个进程先调用CreateFile方法。接下来调用CreateFileMapping方法来创建一个文件映射对象。并为文件映射指明一个句柄和名称。由于事件,信号,互斥对象和文件映射等这些内核对象都共享同一个名字空间,所以如果这个名字和其他一个对象的名称重名的话那么将创建失败