Exemplo n.º 1
0
int get_msg_queue() //获取
{
	int flags = IPC_CREAT;
	return comm_msg_queue(flags);
}
Exemplo n.º 2
0
int get_msg_queue()
{
  int flag=IPC_CREAT;
  return comm_msg_queue(flag);
}
Exemplo n.º 3
0
int creat_msg_queue()  //创建
{
	int flags = IPC_CREAT | IPC_EXCL | 0666;
	return comm_msg_queue(flags);
}
Exemplo n.º 4
0
int create_msg_queue()
{
  int flag=IPC_CREAT|IPC_EXCL|0666;
  return comm_msg_queue(flag);
}