IPC程序間通訊(共享記憶體)

2021-08-20 09:06:25 字數 1485 閱讀 4131

共享記憶體區是最快的ipc形式。一旦這樣的記憶體對映到共享它的程序的位址空間,這些程序間資料傳遞不再涉及到核心,換句話說是程序不再通過執行進入核心的系統呼叫來傳遞彼此的資料。 

用管道或者訊息佇列傳遞資料,核心為每個ipc物件維護乙個資料結構

用共享記憶體傳遞資料

struct shmid_ds ;
#include #include int shmget(key_t key, size_t size, int shm***);
建立共享記憶體
void *shmat(int shmid, const void *shmaddr, int shm***);
將共享記憶體段連線到程序位址空間
int shmdt(const void *shmaddr);
將共享記憶體段從程序空間中脫離

int shmctl(int shmid, int cmd, struct shmid_ds *buf);
用於控制共享記憶體

寫入共享記憶體內容

#include #include #include #include #include #include #include #include #include #include #include struct msg

;int main(int argc, char *argv)

struct msg *p=null;

p=shmat(shmid,null,0);

strcpy(p->line,"hello");

shmdt(p);

return 0;

}

讀取共享記憶體內容
#include #include #include #include #include #include #include #include #include #include #include struct msg

程序間通訊IPC 共享記憶體

共享記憶體 共享記憶體 就是開闢一段物理記憶體使多個程序共享 是程序間最高效的傳輸方式 共享記憶體必須結合其他方式來實現程序間的同步 程式設計步驟 1 開闢一段共享記憶體 int shmget key t key,size t size,int shm key t key ftok a stat s...

程序間通訊(IPC) 共享記憶體

共享記憶體是被多個程序共享的一部分物理記憶體。共享記憶體是程序間共享資料的一種最快的方法,乙個程序向共享記憶體區域寫入了資料,共享這個記憶體區域的所有程序就可以立刻看到其中的內容。把物理記憶體按要求申請出來給多個程序使用,共享記憶體訪問起來比較快,用起來比較簡單,不需要一些特別的函式。共享記憶體實現...

程序間通訊IPC之 共享記憶體

每個程序各自有不同的使用者位址空間,任何乙個進 程的全域性變數在另乙個程序中都看不到,所以程序之間要交換資料必須通過核心,在核心中開闢一塊緩衝 區,程序1把資料從使用者空間拷到核心緩衝區,程序2再從核心緩衝區把資料讀走,核心提供的這種機制稱為程序間通訊 ipc,interprocess commun...