1

mq_send()/mq_receive() を実行する前後に「cat /dev/mqueue/myqueue」を使用してメッセージ キューの QSIZE を調べると、mq_recieve() の後にキューにいくつかのバイトが残っているように見えます。私の小さなテストプログラムは以下の通りです:

#include <stdio.h>
#include <stdlib.h>

#include <mqueue.h>


#define MSG_LEN 8192 // As per mq_msgsize as returned by mq_getattr() on CentOS 7 x86_64 


int main(void)
{
    mqd_t mq;


    /* Create a message queue */
    if ((mq = mq_open("/myqueue", O_RDWR|O_NONBLOCK|O_CREAT|O_EXCL, S_IRUSR|S_IWUSR, NULL)) == -1) {
        perror("Error calling mq_open()");
        exit(EXIT_FAILURE);
    }


    /* Create a message */

    char msg[MSG_LEN] = {" "};

    int msglen = snprintf(msg, MSG_LEN, "Hello, World!"); // msglen is 13 without the terminating '\0' 

    if (msglen < 0) {
        fprintf(stderr, "Error calling snprintf()\n");
        exit(EXIT_FAILURE);
    }


    /*
     * QSIZE here using "cat /dev/mqueue/myqueue" is: 0
     * OK
     */


    /* Send the message */

    if (mq_send(mq, msg, msglen + 1, 1) == -1) { // add 1 to msglen for the termining '\0'
        perror("Error calling mq_send()");
        exit(EXIT_FAILURE);
    }


    /*
     * QSIZE here using "cat /dev/mqueue/myqueue" is: 62
     * Why not 14?
     */


    /* Receive the message */

    if (mq_receive(mq, msg, MSG_LEN, NULL) == -1) {
        perror("Error calling mq_receive()");
        exit(EXIT_FAILURE);
    }


    /*
     * QSIZE here using "cat /dev/mqueue/myqueue" is: 48
     * Why not 0?
     */


    exit(EXIT_SUCCESS);
}

最初に 62 バイトがキューに入れられ、14 バイトのメッセージを送受信した後に 48 バイトの残りが残る理由がわかりません。どんな助けでも大歓迎です。

敬具

ジョン・ダフィー

4

1 に答える 1

1

メッセージキューは、ファイル内にいくつかの簿記情報を保存していると思います。mq_overview()マニュアルページから:

ディレクトリ内の各ファイルの内容は、キューに関する情報を含む 1 行で構成されます。

       $ cat /dev/mqueue/mymq
       QSIZE:129     NOTIFY:2    SIGNO:0    NOTIFY_PID:8260

http://man7.org/linux/man-pages/man7/mq_overview.7.html

于 2015-02-11T21:23:18.277 に答える