- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
这是我的问题:我正在尝试在服务器和客户端之间实现消息队列。为此,我有两个文件,msq-server.c
和 msq-client.c
.
我使用函数 msgctl(msqid, IPC_RMID, &buf)
退出服务器(当我们要求他读取消息队列 3 次,每秒一次,例如)。
像往常一样,msqid
由 msgget 函数设置,buf 由 struct msqid_ds buf
定义.
官方 msgctl 文档说读者(客户端)的 errno 设置为 EIDRM (43),我想在它发生时显示自定义错误。但是当我尝试从关闭的服务器读取消息时,函数 msgrcv(msqid, &message, 64, 0, IPC_NOWAIT)
返回 EINVAL 错误。我假设 msqid 是有罪的
对于函数 msgget
IPC_CREAT | IPC_EXCL |0666
旗帜IPC_EXCL | 0666
旗帜谢谢你的帮助
最佳答案
当您在通过 msgctl() 删除队列时读取消息队列时,msgrcv() 将返回 EIDRM (43)。
当您尝试从不再存在的消息队列中读取时(因为您已经删除了它),msgrcv() 将返回 EINVAL (22)。
请参阅下面的示例。
服务器启动并将一条消息放入队列中。然后等待。
客户端启动并读取第一条消息,然后阻塞等待从未到达的第二条消息。
当客户端等待第二条消息时,服务器移除队列并看到 EIDRM 返回码。
然后客户端尝试再次读取,因为没有队列可用,所以看到了一个 EINVAL。
msg_server.c
#include <sys/msg.h>
#include <unistd.h>
#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct msgbuf {
long mType;
char mText[50];
};
int main() {
char txtBuf[50];
int qId;
key_t key;
struct msgbuf msg, buf;
struct msqid_ds msgCtlBuf;
if ( ( key = ftok( "/tmp", 'C' ) ) == -1 ) {
perror( "server: ftok failed:" );
exit( 1 );
}
printf( "server: System V IPC key = %u\n", key );
if ( ( qId = msgget( key, IPC_CREAT | 0666 ) ) == -1 ) {
perror( "server: Failed to create message queue:" );
exit( 2 );
}
printf( "server: Message queue id = %u\n", qId );
strcpy( msg.mText, "This is a message" );
msg.mType = 1;
if ( msgsnd( qId, &msg, sizeof msg.mText, 0 ) == -1 ) {
perror( "server: msgsnd failed:" );
exit( 3 );
}
printf( "server: Message sent successfully\n" );
printf( "server: waiting..." );
sleep( 15 );
printf( "server: done waiting. removing message queue...\n" );
if ( msgctl( qId, IPC_RMID, &msgCtlBuf ) == -1 ) {
perror( "server: msgctl failed:" );
exit( 4 );
}
printf( "server: Message queue removed OK\n" );
}
msg_client.c
#include <sys/msg.h>
#include <unistd.h>
#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
struct msgbuf {
long mType;
char mText[50];
};
int main() {
char txtBuf[50];
int qId;
key_t key;
struct msgbuf msg, buf;
struct msqid_ds msgCtlBuf;
if ( ( key = ftok( "/tmp", 'C' ) ) == -1 ) {
perror( "client: ftok failed:" );
exit( 1 );
}
printf( "client: System V IPC key = %u\n", key );
if ( ( qId = msgget( key, IPC_CREAT | 0666 ) ) == -1 ) {
perror( "client: Failed to create message queue:" );
exit( 2 );
}
printf( "client: Message queue id = %u\n", qId );
if ( msgrcv( qId, &buf, sizeof msg.mText, 1, 0 ) == -1 )
perror( "client: msgrcv failed:" );
else
printf( "client: Message received = %s\n", buf.mText );
//
// attempt read again and block on queue waiting for server to IPC_RMID
//
if ( msgrcv( qId, &buf, sizeof msg.mText, 1, 0 ) == -1 )
perror( "client: msgrcv failed:" );
else
printf( "client: Message received = %s\n", buf.mText );
printf( "client: errno = %d\n", errno );
//
// attempt read again but message queue should now be gone
//
if ( msgrcv( qId, &buf, sizeof msg.mText, 1, 0 ) == -1 )
perror( "client: msgrcv failed:" );
else
printf( "client: Message received = %s\n", buf.mText );
printf( "client: errno = %d\n", errno );
}
./msg_server &
[1] 668
服务器:系统 V IPC key = 1124335618
服务器:消息队列id = 262144
服务器:消息发送成功
./msg_client
客户端:System V IPC key = 1124335618
客户端:消息队列id = 262144
客户端:收到消息=这是一条消息
服务器:WAITING...服务器:完成等待。删除消息队列...
服务器:消息队列已删除 OK
客户端:msgrcv 失败::标识符已删除
客户端:errno = 43
客户端:msgrcv 失败::参数无效
客户端:errno = 22
[1]+ 退出 33 ./msg_server
关于c - 消息队列(msgget - msgsnd - msgrcv)Linux - EIDRM,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49570961/
我正在使用 IPC 队列进行进程同步。 从 IPC 队列发送接收消息时,我总是收到 EIDRM 错误,但我可以看到队列与 ipcs 一起存在。 我已经搜索了 2 个小时,但我看不到错误。 下面的代码是
这是我的问题:我正在尝试在服务器和客户端之间实现消息队列。为此,我有两个文件,msq-server.c和 msq-client.c . 我使用函数 msgctl(msqid, IPC_RMID, &b
我正在使用 Sys V Semaphores 测试一些代码,以了解其从各种事件中恢复的能力,对于其中一项测试,我在进程处于其关键部分时删除了信号量集(从终端)。当需要再次调用 semop 来释放锁时,
我是一名优秀的程序员,十分优秀!