自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

Linux多線程同步之消息隊列

運維 系統(tǒng)運維
msgget用于創(chuàng)建一個新隊列或打開一個現(xiàn)存的隊列。msgsnd將新消息加入到消息隊列中;每個消息包括一個long型的type;和消息緩存;msgrcv用于從隊列中取出消息;取消息很智能,不一定先進先出......

消息隊列是消息的鏈表,存放在內(nèi)核中并有消息隊列標示符標示。

msgget用于創(chuàng)建一個新隊列或打開一個現(xiàn)存的隊列。msgsnd將新消息加入到消息隊列中;每個消息包括一個long型的type;和消息緩存;msgrcv用于從隊列中取出消息;取消息很智能,不一定先進先出

①msgget,創(chuàng)建一個新隊列或打開一個現(xiàn)有隊列

#include

int msgget ( key_t key, int flag );

//成功返回消息隊列ID;錯誤返回-1

②msgsnd: 發(fā)送消息

#include

int msgsnd( int msgid, const void* ptr, size_t nbytes, int flag )

//成功返回0,錯誤返回-1

a:   flag可以指定為IPC_NOWAIT;  若消息隊列已滿,則msgsnd立即出錯返回EABAIN;

若沒指定IPC_NOWAIT; msgsnd會阻塞,直到消息隊列有空間為止

③msgrcv: 讀取消息:

ssize_t msgrcv( int msgid, void* ptr, size_t nbytes, long type, int flag );

a. type == 0; 返回消息隊列中***個消息,先進先出

b. type > 0    返回消息隊列中類型為tpye的***個消息

c. type < 0    返回消息隊列中類型 <=  |type| 的數(shù)據(jù);若這種消息有若干個,則取類型值最小的消息

消息隊列創(chuàng)建步驟:

#define   MSG_FILE "."

struct msgtype {

long mtype;

char buffer[BUFFER+1];

};

if((key=ftok(MSG_FILE,'a'))==-1)

{

fprintf(stderr,"Creat Key Error:%s\n", strerror(errno));

exit(1);

}

if((msgid=msgget(key, IPC_CREAT | 0666/*PERM*/))==-1)

{

fprintf(stderr,"Creat Message  Error:%s\n", strerror(errno));

exit(1);

}

msg.mtype = 1;

strncpy(msg.buffer, argv[1], BUFFER);

msgsnd(msgid, &msg, sizeof(struct msgtype), 0);

msgrcv(msgid, &msg, sizeof(struct msgtype), 1, 0);

示例代碼:

#include

#include

#include

#include

#include

#include

#include

#include

#include

#define   MSG_FILE "."

#define   BUFFER 255

#define   PERM S_IRUSR|S_IWUSR

#define IPCKEY 0x111

struct msgtype {

long mtype;

char buffer[BUFFER+1];

};

void* thr_test( void* arg ){

struct msgtype msg;

int msgid;

msgid =  *((int*)arg);

printf("msqid = %d  IPC_NOWAIT = %d\n", msgid, IPC_NOWAIT);

time_t tt = time(0)+8;

//while( time(0) <= tt )

//{

msgrcv(msgid, &msg, sizeof(struct msgtype), 1, 0);

fprintf(stderr,"Server Receive:%s\n", msg.buffer);

msg.mtype = 2;

msgsnd(msgid, &msg, sizeof(struct msgtype), 0);

//}

pthread_exit( (void*)2 );

}

int main(int argc, char **argv)

{

struct msgtype msg;

key_t key;

int msgid;

pthread_t tid;

if(argc != 2)

{

fprintf(stderr,"Usage:%s string\n", argv[0]);

exit(1);

}

/*

char path[256];

sprintf( path, "%s/", (char*)getenv("HOME") );

printf( "path is %s\n", path );

msgid=ftok( path, IPCKEY );

*/

if((key=ftok(MSG_FILE,'a'))==-1)

{

fprintf(stderr,"Creat Key Error:%s\n", strerror(errno));

exit(1);

}

if((msgid=msgget(key, IPC_CREAT | 0666/*PERM*/))==-1)

{

fprintf(stderr,"Creat Message  Error:%s\n", strerror(errno));

exit(1);

}

pthread_create( &tid, NULL, thr_test, &msgid );

fprintf(stderr,"msid is :%d\n", msgid);

msg.mtype = 1;

strncpy(msg.buffer, argv[1], BUFFER);

msgsnd(msgid, &msg, sizeof(struct msgtype), 0);

exit(0);

}
 

【編輯推薦】

  1. Linux多線程同步之命名管道
  2. linux多線程機制線程同步
  3. linux多線程之線程資源的釋放
責任編輯:趙寧寧 來源: chinaitlab
相關推薦

2010-01-21 11:22:35

Linux多線程同步

2010-01-21 11:27:30

linux多線程機制線程同步

2024-07-05 08:32:36

2012-06-05 02:12:55

Java多線程

2025-04-10 01:01:00

2015-07-22 09:51:51

iOS開發(fā)線程

2015-07-22 09:39:38

IOS多線程同步

2024-06-28 08:45:58

2017-02-27 14:25:50

Java隊列Web

2013-07-16 12:13:27

iOS多線程多線程概念GCD

2009-03-12 10:52:43

Java線程多線程

2009-09-14 19:39:14

批量線程同步

2011-04-14 13:27:53

Synchronize多線程

2010-03-15 19:37:00

Java多線程同步

2023-06-07 13:49:00

多線程編程C#

2024-07-08 12:51:05

2021-03-11 06:01:41

Linux消息隊列

2009-07-17 17:29:13

多任務多線程

2011-06-22 13:47:16

Java多線程

2011-06-22 13:57:54

Java多線程
點贊
收藏

51CTO技術棧公眾號