搜索资源列表
嵌入式linux开发详解代码
- 进程创建,进程等待,进程通信等方面源代码,适合初学者学习,较好。-process creation, the process of waiting, the process of communication, and other aspects source code, for beginners learning, better.
pipedoc
- 管道(Pipe)实际是用于进程间通信的一段共享内存,创建管道的进程称为管道服务器,连接到一个管道的进程为管道客户机。一个进程在向管道写入数据后,另一进程就可以从管道的另一端将其读取出来。匿名管道(Anonymous Pipes)是在父进程和子进程间单向传输数据的一种未命名的管道,只能在本地计算机中使用,而不可用于网络间的通信。-pipes (Pipe) for the actual inter-process communication for shared memory, the creati
linux_process_communication
- 本资源中含有有关LINUX进程通信的一些文章,从详细说明了信号量、管道以及消息队列等方式介绍。
LinuxKernelInterpretation
- 教学内部实验教案,提供对操作系统内核的实验理解: Linux 操作系统内核 基本实验指导 Contents : z 系统安装实验 z Linux内核实验 z 进程管理实验 z 存储管理实验 z 进程通信实验 z I/O 设备管理实验 z 文件系统管理实验 -Internal experimental teaching lesson plans, provide the experimental understanding of the op
CMMI
- CMMI 利用命名管道技术,在进程间进行通信的例程。希望和大家交流-CMMI using named pipe technology, in the process of communication between the routines. Would like to exchange
01
- 编写程序实现进程的管道通信。用系统调用pipe( )建立一管道,二个子进程P1和P2分别向管道各写一句话:-Write a program to achieve the process of communication channels. With the system call pipe () to build a pipeline, two sub-processes P1 and P2 respectively, each pipeline write one sentence:
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
Linux_server
- 这里包含了几个Linux服务器设计的文档。内容还很有含金量的。 目录:Linux环境并发服务器设计技术研究.pdf 基于并发服务器的网络通信的设计和实现.pdf 基于进程池的Linux并发服务器的研究.pdf 基于通信接口封装机制的网络并发服务器设计.pdf 基于主动队列管理的Linux并发服务器模型及负载均衡算法的研究.pdf-This contains a number of Linux server design document. It is very gold co
Unixnetcode2
- UNIX网络编程 第2卷 进程间通信.pdf,是学习UNIX C++编程的一本好书-UNIX Network Programming Volume 2 inter-process communication. Pdf, is to learn UNIX C++ programming, a good book
MFC-coding
- 孙鑫《MFC深入详解》书中全部源码例程,包括菜单、工具栏的创建,文件的操作,进程之间的通信,多进程编程-Sun Xin " MFC-depth Detailed," the book all the source code routines, including menus, toolbars are created, the file operation, the communication between processes, multi-process programming
MUhr
- 通过共享内存和Semaphor进行进程间的通信,进行信息的读写-Interprocess communication through shared memory and Semaphor information to read and write
trojan-technique-principle
- 本论文对目前较为流行的木马技术的实现方式、工作原理及远程控制的关键 技术进行系统的研究,重点对木马程序的进程实现、受控端与控制端通信进行剖 析。-This essay takes research on realizing ways of popular Trojall horse technology,the principle of working and theremote----control system controlling technology.
aidl
- android内部进程通信接口的描述语言-Android Interface definition language
STKX
- 基于STKX组件的视景仿真关键技术 : :: :在不启动卫星工具包(STK)的基础上,将 STK应用于分布式视景仿真,通过插入 STKX组件和调用组件应用程序编程接口函数完 成 STK 的功能调用,解决 STKX 组件与运行支撑环境的集成问题。采用进程通信中的共享内存和事件技术,以 S 函数模块为中间件,实现 Simulink 模型数据的实时获取,获得数值仿真结果。基于 STKX 的导弹攻防视景仿真实验表明,该方法无需启动 STK 即可应用于分布式视景仿真。
UNIX
- 进程间通信(IPC)几乎是所有Unix程序性能的关键,理解IPC也是理解如何开发不同主机间网络应用程序的必要条件。本书从对Posix IPC和System V IPC的内部结构开始讨论,全面深入地介绍了4种IPC形式:消息传递(管道、FIFO、消息队列)、同步(互斥锁、条件变量、读写锁、文件与记录锁、信号量)、共享内存(匿名共享内存、具名共享内存)及远程过程调用(Solaris门、Sun RPC)。-Interprocess communication (IPC) is the key to a
CPP-use-shared-memory-
- C++ 使用共享内存实现进程间通信。 文件映射是一种实现进程间单向或双向通信的机制。它允许两个或多个本地进程间相互通信。为了共享文件或内存,所有的进程必须使用相同的文件映射的名字或是句柄。 为了实现共享文件,第一个进程先调用CreateFile方法。接下来调用CreateFileMapping方法来创建一个文件映射对象。并为文件映射指明一个句柄和名称。由于事件,信号,互斥对象和文件映射等这些内核对象都共享同一个名字空间,所以如果这个名字和其他一个对象的名称重名的话那么将创建失败
112
- 进程管理系统的实现,包括进程的创建、调度、通信、撤消等功能-Realization process management system, including processes to create, scheduling, communications, consumer and other withdrawal function
AndroidBook_004_IPC_Binder_V2.0
- 两本书,一本关于android游戏设计方面,另一本关于android进程间通信的Binder方面的书籍-Two books, one on android game design, another aspect of the on Binder inter-process communication books android
3
- 本论文主要介绍船舶航海信息采集系统(Marine Information Gathering System简称MIGS)。船舶航海信息对于航运管理起着重要的作用。通过对船上子系统航海信息数据的收集,卫星通信的传输,岸上子系统的接收、分析,实现了船公司对在航船舶动态的监控和航运的管理,并可向造船公司提供船舶航行性能数据,以供分析。 本系统已经成功地安装在了某国际航运公司的约500条远洋运输船舶上,运行效果良好,获得了用户的好评,充分体现了系统的经济效益和社会效益。本系统对于国内的航运公司的信息化进