搜索资源列表
Unix进程通讯及同步互斥机制
- Unix进程通讯及同步互斥机制,包括进程的管道通讯以及信号量实现的同步互斥机制-Unix process communication and synchronization contradict mechanisms, including the process of communication and signal pipeline capacity to achieve the synchronization mechanism Mutex
信号
- 这是一个用信号实现父子进程之间简单通讯的程序,要求实现父子进程同步,用信号实现.可能还有待改进的地方-This is a signal achievement with his son communications process between simple procedure requires the synchronization process and his son, using signal achievement. There may be room for improvement
Unix06.03.17
- linux下有关多任务,进程通讯 ,多线程的绝好的学习的例子-under the multi-task, process communications, multi-threaded an excellent example of learning
UNIX_MSG_COMMUNICATION
- UNIX环境下如何应用消息队列实现进程间通讯,值得一看的好-UNIX environment on the use of Message Queue to achieve inter-process communication, enjoying their good Dongdong
communication
- 实现Linux操作系统中的进程通讯功能,巩固操作系统的进程通讯原理。
unpv22e.tar
- unix进程间通讯一书的源码-unix process of communication among the book s source code
thread_com.tar
- UNIX(进程间通信代码),用于新学者了解进程间各种方式的通讯-UNIX (inter-process communication code) for the new academic processes in all forms of communication
123598
- 在VC++ 6.0下利用共享内存、消息实现内部进程通讯 程序名称:resource.h-In VC++ 6.0 use shared memory, message communication procedures to achieve internal process name: resource.h
linux
- linux下的进程通讯机制的代码例子。消息队列以及共享内存。-linux process communication mechanism under the code examples. Message queue and shared memory.
ipc
- linux下进程间通讯列子,包括消息队列,共享内存等-linux Liezi under the process of communication, including message queues, shared memory, etc.
Linux_comm_among_process
- Linux_comm_among_process是在linux环境下的进程间通讯说明文档-Linux_comm_among_process environment in the linux process of documentation of communication among
ipc
- linux进程间通讯,包括管道、消息队列、信号量通讯。-linux inter-process communication, including pipes, message queues, semaphores communications.
ProcessOpenFile
- 进程通讯好程序,值得学习,同时希望大家提出改进意见,-Process, good communications program, it is worth learning, and hope we suggest improvements, thanks
zuoyediaodu
- 实验内容: 要求实现用户空间内的作业调度系统,通过作业调度系统实现以下的操作: (1)提交自己的作业。 (2)将自己提交的作业移出。 (3)查看作业状态。 实验目的: 理解操作系统中调度的概念和调度算法; 学习Linux下进程控制以及进程通讯的知识 理解在操作系统中作业是如何被调度的,如何协调与控制作业对CPU的使用-Experiment: job scheduling system in user space, the following o
ProcComm
- 自己写的进程通讯类,用起来很方便的,用CreateFile创建一个名字,然后用CreateView创建视图,返回的指针就是进程通讯的数据区。-Process communications class to write their own, with very convenient CreateFile to create a name, and then create a view with CreateView returned pointer is to process the data c
linux
- linux下的进程通讯的小例子,pv操作-small example of the process communication under linux, pv operation
shiyan-code
- 嵌入式linux\第2阶段(Linux应用程序设计)\第4天(进程通讯)\必修实验代码-Embedded linux \ stage 2 (Linux application design) \ 4 days (interprocess communication) \ compulsory experimental code
asdqwfngj
- 进程通信,进程通讯,内存映射通讯,跨进程通信,发送数据-Interprocess communication, process communication, memory-mapped communication, inter-process communication, the transmission data
ipcMsg
- 非常好用的消息队列使用案例,使用与linux多进程通讯(message queue usage case)
linux进程之间的通讯综合实例
- A<========>B<=========>C<=====>D<======>E A与B进程之间通过TCP的socket传递 主要掌握socket的流程: A服务器端: socket -->bind---->listen---->accept send read B客户端: socket-->connect->read send 不懂的可以man一下 man socket B与C