系統建立ipc通訊(如訊息佇列、共享記憶體時)必須指定乙個id值。通常情況下,該id值通過ftok函式得到。
ftok原型如下:
key_t ftok( char * fname, int id )
fname就時你指定的檔名(該檔案必須是存在而且可以訪問的),id是子序號,
雖然為int,但是只有8個位元被使用(0-255)。
當成功執行的時候,乙個key_t值將會被返回,否則 -1 被返回。
在一般的unix實現中,是將檔案的索引節點號取出,前面加上子序號得到key_t的返回值。如指定檔案的索引節點號為65538,換算成16進製為 0x010002,而你指定的id值為38,換算成16進製為0x26,則最後的key_t返回值為0x26010002。
查詢檔案索引節點號的方法是: ls -i
以下為測試程式:
#include
#include
#include
#define ipckey 0x11
int main( void )
在成功獲取到key之後,就可以使用該key作為某種方法的程序間通訊的key值,例如shmget共享記憶體的方式。
shmget的函式原型為
int shmget( key_t, size_t, flag);
在建立成功後,就返回共享記憶體的描述符。在shmget中使用到的key_t就是通過ftok的方式生成的
例項:#include
#include
#include
#include
#include
#define size 1024
extern int errno;
int main()
//將共享記憶體連線到 可用位址上
if((shmptr = (char*)shmat(shmid, 0, 0)) == (void*)-1)
memcpy(shmptr, "hello world", sizeof("hello world"));
printf("share memory from %lx to %lx, content:%s\n",(unsigned long)shmptr, (unsigned long)(shmptr + size), shmptr);
//拆卸共享記憶體
if((shmctl(shmid, ipc_rmid, 0) < 0))}
多程序之間共享記憶體情況:
#include
#include
#include
#include
#include
#include
#include
#include
#define size 1024
extern int errno;
int main()
else if(pid == 0)
if((shmid = shmget(key, size, 0600)) < 0)
if((shmptr = (char*)shmat(shmid, 0, 0)) == (void*)-1)
//memcpy(shmptr, "hello world", sizeof("hello world"));
printf("child:pid is %d,share memory from %lx to %lx, content:%s\n",getpid(), (unsigned long)shmptr, (unsigned long)(shmptr + size
), shmptr);
printf("child process sleep 2 seconds\n");
sleep(2);
if((shmctl(shmid, ipc_rmid, 0) < 0))
exit(0);
}//parent
else
if((shmid = shmget(key, size, 0600|ipc_creat|ipc_excl)) < 0)
if((shmptr = (char*)shmat(shmid, 0, 0)) == (void*)-1)
memcpy(shmptr, "hello world", sizeof("hello world"));
printf("parent:pid is %d,share memory from %lx to %lx, content:%s\n",getpid(),(unsigned long)shmptr, (unsigned long)(shmptr + size
), shmptr);
printf("parent process sleep 2 seconds\n");
sleep(2);
if((shmctl(shmid, ipc_rmid, 0) < 0))}
waitpid(pid,null,0);
exit(0);}
輸出為:
shmctl(shmid, ipc_rmid, 0)的作用是從系統中刪除該恭喜儲存段。因為每個共享儲存段有乙個連線計數(shmid_ds結構中的shm_nattch),所以除非使用該段的最後乙個程序終止與該段脫接,否則不會實際上刪除該儲存段
系統函式ftok
系統建立ipc通訊 如訊息佇列 共享記憶體時 必須指定乙個id值。通常情況下,該id值通過ftok函式得到。ftok原型如下 key t ftok char fname,int id fname就時你指定的檔名,id是子序號。在一般的unix實現中,是將檔案的索引節點號取出,前面加上子序號得到key...
ftok 函式深度解析
關於ftok函式,先不去了解它的作用來先說說為什麼要用它,共享記憶體,訊息佇列,訊號量它們三個都是找乙個中間介質,來進行通訊的,這種介質多的是。就是怎麼區分出來,就像唯一乙個身份證來區分人一樣。你隨便來乙個就行,就是因為這。只要唯一就行,就想起來了檔案的裝置編號和節點,它是唯一的,但是直接用它來作識...
ftok函式的使用
1 ipcs 檢視當前系統中所有建立的ipc物件 2 ipcs q 檢視建立的訊息佇列 3 ipcs m 檢視建立的共享記憶體段 4 ipcs s 檢視建立的訊號量陣列 5 ipcrm 刪除ipc物件 例如 ipcrm q msqid 刪除標號為msqid的訊息佇列 system v提供的ipc通訊...