可以採用sysv的shmget + shmat 實現。
但是我更喜歡shm_open + mmap 更簡單。
#---------------------writer.c----------------------------
#include
#include
#include
#include
#include
#include
#include
#include
struct ofs_stat
;int main(void)
;struct ofs_stat *s;
void *region=null;
char *name;
if((fd=shm_open("ofs_mmm", o_trunc|o_creat|o_rdwr,0644))==-1)
ftruncate(fd, sizeof(stat));
region = mmap(null, sizeof(struct stat), prot_read|prot_write, map_shared, fd, 0);
if(region == (caddr_t)-1)
s = (struct ofs_stat *)region;
while(1)
shm_unlink("ofs_mmm");
return 0;
}#--------------------reader.c----------------------------
#include
#include
#include
#include
#include
#include
#include
#include
struct ofs_stat
;int main(void)
;struct ofs_stat *s;
void *region=null;
char *name;
if((fd=shm_open("ofs_mmm", o_creat|o_rdonly,0644))==-1)
ftruncate(fd, sizeof(struct stat));
region = mmap(null, sizeof(struct stat), prot_read, map_shared, fd, 0);
if(region == (caddr_t)-1)
s = (struct ofs_stat *)region;
while(1)
shm_unlink("ofs_mmm");
return 0;
}
Linux程序間通訊 共享記憶體
共享記憶體是執行在同一臺機器上的程序間通訊最快的方式,因為資料不需要在不同的程序間複製。通常由乙個程序建立一塊共享記憶體區,其餘程序對這塊記憶體區進行讀寫。共享記憶體往往與其它通訊機制,如訊號量結合使用,來達到程序間的同步及互斥。首先要用的函式是shmget,它獲得乙個共享儲存識別符號。i nclu...
Linux程序間共享記憶體通訊
使用共享記憶體基本分四個步驟 獲得共享記憶體 shmget 對映共享記憶體shmat 解除對映shmdt 刪除共享記憶體shmctl 於是自己在網上找來了乙個例子看了下,並且用虛擬機器單獨跑了下共享記憶體的經典例程看了下,才知道了自己的問題出現 了 發現有時候只要自己親自將程式一步一步的去測,才知道...
Linux程序間通訊 共享記憶體
之前提到了程序間通訊的管道,訊息佇列,訊號量,然後其中訊號量是pv操作,操控的是乙個共享資源。在我們提到的ipc模組中,訊息佇列針對的是資料單元的資訊傳送,管道不屬於system v ipc的部分,所以按照乙個作業系統的整體來說,他應該也有著乙個關於位元組流的訊息傳輸,並且要比之前都要快,還要跟我們...