Sponsored Content
Top Forums Programming POSIX mq_receive issue: Message too long Post 302352142 by katwalatapan on Thursday 10th of September 2009 01:10:56 PM
Old 09-10-2009
POSIX mq_receive issue: Message too long

Hello,

I am trying to implement posix message queue application. I am faced with an error on the mq_receive section. It says "Message too long". I've tried couple of small tweeks, but to no result. Please do suggest any rectificaitons.

mq_send section-works successfully
Code:
#include <mqueue.h>
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <sys/stat.h>
#include <string.h>
#include <signal.h>

#define MSG_SIZE 16
#define MQ_NAME "/msgqueue"
int main(void)
{
      
      mqd_t    mqPXId;          
        char *msg = "test";
         
        
        if ((mqPXId = mq_open (MQ_NAME, O_RDWR | O_CREAT, S_IWUSR | S_IRUSR, NULL)) ==-1) 
            { 
            printf ("sendTask: mq_open failed: %s\n", strerror(errno)); 
            return 0; 
            }

           
        if (mq_send (mqPXId, msg, MSG_SIZE, NULL) == -1) 
            { 
            printf ("sendTask: mq_send failed\n"); 
            return 0; 
            } 
        else 
        {
            printf ("sendTask: mq_send succeeded, msg sent: %s\n",msg); 
         }
            return 0;
}

mq_receive section: error-Message too long

Code:
#include <stdio.h>
#include <mqueue.h>
#include <pthread.h>
#include <string.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <errno.h>
#define MSG_SIZE 16
#define MQ_NAME "/msgqueue"

int main(void)
{
    mqd_t    mqPXId;         /* msg queue descriptor */ 
        char     *msg;  /* msg buffer */ 
       // unsigned int      prio;           /* priority of message */

     
        /* open message queue using default attributes */ 
        if ((mqPXId = mq_open (MQ_NAME, O_RDWR , S_IWUSR | S_IRUSR, NULL))  
            ==  -1) 
            { 
            printf ("receiveTask: mq_open failed\n"); 
            return 0; 
            }

     
        /* try reading from queue */ 
        if (mq_receive (mqPXId,(char *)&msg,MSG_SIZE, NULL) == -1) 
            { 
            printf ("receiveTask: mq_receive failed: %s\n",strerror(errno)); 
            return 0; 
            } 
        else 
            { 
            printf ("receiveTask: Msg of priority received:\n\t\t%s\n", 
                    msg); 
            } 
return 0;
        }

 

10 More Discussions You Might Find Interesting

1. Programming

POSIX Message Queue - Settings

How can I increase the POSIX Msg Q parameter SC_MQ_PRIO_MAX? The maximum is defined as 32. Can I increase the number? If so, how? Deepa (0 Replies)
Discussion started by: Deepa
0 Replies

2. HP-UX

posix ipc message queue

Hello, My question is related to "pipcs -qa" command under HP-UX 11i PA-RISC 64 bits. We have a little C program that creates posix ipc message queues using the mq_open() system function. The program fail with 'No space left on device' error when we create big queues. What is the system... (6 Replies)
Discussion started by: cadanir
6 Replies

3. UNIX Desktop Questions & Answers

mq_receive() example

can anyone provide me with a simple example of mq_receive(). (1 Reply)
Discussion started by: mohit3884
1 Replies

4. Linux

POSIX message queue size

Hi all, Please tell me how to change POSIX message queue maximum size? "ulimit" is not a solution because it controls shell resources. But i need to control queue size before login in and starting the shell. It is needed to limit queue size for applications started before login in. Sorry for my... (7 Replies)
Discussion started by: Vourhey
7 Replies

5. Programming

How to limit max no of message in a posix message queue

Hii can anyone pls tell how to limit the max no of message in a posix message queue. I have made changes in proc/sys/fs/mqueue/msg_max But still whenever i try to read the value of max. message in the queue using attr.mq_curmsgs (where struct mq_attr attr) its giving the default value as 10.... (0 Replies)
Discussion started by: mohit3884
0 Replies

6. UNIX for Dummies Questions & Answers

Unable to extract a tag from a very long XML message

Hi I have a log file which contain XML message. I want to extract the value between the tag : <businessEventId>13201330</businessEventId> i.e., 13201330. I tried the following commands but as the message is very long, unable to do it. Attached is the log file. Please provide inputs. --... (3 Replies)
Discussion started by: Sapna_Sai
3 Replies

7. Programming

Please help:program hang stuck there signal handling on POSIX Message Queue UNIX C programming

in a single main() function,so need signal handling. Use Posix Message Queue IPC mechanism , can ignore the priority and other linked list message,to implement the scenario: client:Knock Knock server:who's there client: Eric Server:Eric,Welcome. client:exit all process terminated ... (1 Reply)
Discussion started by: ouou
1 Replies

8. Programming

POSIX Message Queue Memory Allocation

Hi, I wanted to know whether the POSIX message queues are statically allocated memory by the kernel based on the parameters specified in the open or as and when we send messages, memory are allocated? Does the kernel reserve the specified memory for the message queue irrespective of whether... (1 Reply)
Discussion started by: sumtata
1 Replies

9. Programming

POSIX message queue mq_open directory

hello, I try to test the POSIX mq_open function on book unp like below: #include "unpipc.h" # include <mqueue.h> int main(int argc, char **argv) { int c, flags; mqd_t mqd; flags = O_RDWR | O_CREAT; while ((c = getopt(argc, argv, "e")) != -1) { ... (3 Replies)
Discussion started by: anpufeng
3 Replies

10. Shell Programming and Scripting

How to display a message if program hangs(takes too long)

I have a ksh script (script1) that calls another ksh script (script2). If script2.ksh hangs or takes too long to execute I want script1.ksh to kill the call to script2.ksh and instead just display "Script2 can't run right now". Could someone help me with coding this? (1 Reply)
Discussion started by: mrskittles99
1 Replies
MQ_RECEIVE(3)						     Linux Programmer's Manual						     MQ_RECEIVE(3)

NAME
mq_receive, mq_timedreceive - receive a message from a message queue SYNOPSIS
#include <mqueue.h> ssize_t mq_receive(mqd_t mqdes, char *msg_ptr, size_t msg_len, unsigned int *msg_prio); #include <time.h> #include <mqueue.h> ssize_t mq_timedreceive(mqd_t mqdes, char *msg_ptr, size_t msg_len, unsigned int *msg_prio, const struct timespec *abs_timeout); Link with -lrt. Feature Test Macro Requirements for glibc (see feature_test_macros(7)): mq_timedreceive(): _POSIX_C_SOURCE >= 200112L DESCRIPTION
mq_receive() removes the oldest message with the highest priority from the message queue referred to by the message queue descriptor mqdes, and places it in the buffer pointed to by msg_ptr. The msg_len argument specifies the size of the buffer pointed to by msg_ptr; this must be greater than or equal to the mq_msgsize attribute of the queue (see mq_getattr(3)). If msg_prio is not NULL, then the buffer to which it points is used to return the priority associated with the received message. If the queue is empty, then, by default, mq_receive() blocks until a message becomes available, or the call is interrupted by a signal han- dler. If the O_NONBLOCK flag is enabled for the message queue description, then the call instead fails immediately with the error EAGAIN. mq_timedreceive() behaves just like mq_receive(), except that if the queue is empty and the O_NONBLOCK flag is not enabled for the message queue description, then abs_timeout points to a structure which specifies how long the call will block. This value is an absolute timeout in seconds and nanoseconds since the Epoch, 1970-01-01 00:00:00 +0000 (UTC), specified in the following structure: struct timespec { time_t tv_sec; /* seconds */ long tv_nsec; /* nanoseconds */ }; If no message is available, and the timeout has already expired by the time of the call, mq_timedreceive() returns immediately. RETURN VALUE
On success, mq_receive() and mq_timedreceive() return the number of bytes in the received message; on error, -1 is returned, with errno set to indicate the error. ERRORS
EAGAIN The queue was empty, and the O_NONBLOCK flag was set for the message queue description referred to by mqdes. EBADF The descriptor specified in mqdes was invalid or not opened for reading. EINTR The call was interrupted by a signal handler; see signal(7). EINVAL The call would have blocked, and abs_timeout was invalid, either because tv_sec was less than zero, or because tv_nsec was less than zero or greater than 1000 million. EMSGSIZE msg_len was less than the mq_msgsize attribute of the message queue. ETIMEDOUT The call timed out before a message could be transferred. ATTRIBUTES
For an explanation of the terms used in this section, see attributes(7). +--------------------------------+---------------+---------+ |Interface | Attribute | Value | +--------------------------------+---------------+---------+ |mq_receive(), mq_timedreceive() | Thread safety | MT-Safe | +--------------------------------+---------------+---------+ CONFORMING TO
POSIX.1-2001, POSIX.1-2008. NOTES
On Linux, mq_timedreceive() is a system call, and mq_receive() is a library function layered on top of that system call. SEE ALSO
mq_close(3), mq_getattr(3), mq_notify(3), mq_open(3), mq_send(3), mq_unlink(3), mq_overview(7), time(7) COLOPHON
This page is part of release 4.15 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/. Linux 2017-09-15 MQ_RECEIVE(3)
All times are GMT -4. The time now is 08:35 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy