Skip to content
/ mmap Public

show how to use mmap to implement the shared memory

Notifications You must be signed in to change notification settings

Denny007/mmap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

1、编译两个程序,可执行文件分别为 mmap_test1、mmap_test2。
2、两个程序通过命令行参数指定同一个文件来实现共享内存方式
   的进程间通信。 map_normalfile2试图打开命令行参数指定的
   一个普通文件,把该文件映射到进程的地址空间,并对映射后
   的地址空间进行写操作。 map_normalfile1把命令行参数指定
   的文件映射到进程地址空间,然后对映射后的地址空间执行读
   操作。
3、这样,两个进程通过命令行参数指定同一个文件来实现
   共享内存方式的进程间通信。

About

show how to use mmap to implement the shared memory

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published