
进程间通信
举起海豚
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
匿名管道
创建子进程执行命令,通过匿名管道把结果返回给父进程。父进程: HANDLE hRead; HANDLE hWrite; SECURITY_ATTRIBUTES stSecureA; stSecureA.nLength = sizeof(stSecureA); stSecureA.bInheritHandle = true; stSecureA.lpSecurityDesc...原创 2019-09-05 09:40:45 · 153 阅读 · 0 评论 -
命名管道
Window下:服务端:进程A#include <stdio.h>#include <Windows.h>#include <iostream>using namespace std;void ReadMessage(HANDLE handle);void WriteMessage(HANDLE handle, char *message...原创 2019-09-05 14:09:30 · 165 阅读 · 0 评论 -
共享内存
Windows:(1)不采用磁盘文件共享:#include <Windows.h>#include <iostream>#include <string>using namespace std;#define SHARED_MAX_LEN 255int _tmain(int argc, _TCHAR* argv[]){ HANDLE h...原创 2019-09-05 17:07:06 · 223 阅读 · 0 评论