Sponsored Content
Top Forums UNIX for Dummies Questions & Answers IPC Message Queue. msgrcv doesnt work.. Post 302385851 by pludi on Sunday 10th of January 2010 10:06:59 AM
Old 01-10-2010
Please no not post homework in the main Forums. Thread closed.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

cd.. doesnt work

hi when i want to go to previous directory by typing cd.. i get the following message $ cd.. ksh: cd..: not found Please help rintingtong (2 Replies)
Discussion started by: rintingtong
2 Replies

2. HP-UX

ls command doesnt work

Good Day I mistakely renamed the dld.sl file in the /usr/lib directory. When i try to ls/ftp into the box i get this error :eek: crt0: ERROR couldn't open /usr/lib/dld.sl errno:000000002 I have tried to rename it back from the renamed file to the original file name, but it gives me the... (2 Replies)
Discussion started by: shawnbishop
2 Replies

3. 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

4. UNIX for Dummies Questions & Answers

cp doesnt work - Help

When trying to copy a file in Solaris 8 it doesnt copy file or give a error. This worked 100% until the 29th. I've checked the rights and everything seems fine: drwxrwxrwx 2 bmuser bmgroup 11776 Jan 3 10:32 spool This is the file I want to copy: -rwxrwxrwx 1 bmuser bmgroup ... (26 Replies)
Discussion started by: rudi.okelly
26 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. Programming

IPC - queue problems

Hi, I´m having a lot of problems when working with message queues, both on HP-UX Systems and Sun Solaris. When we fill a queue with a messages, the system hangs and locks everything that relies on the use of IPC resources. Anyone knows how to eliminate this problem? Thanks, Haroldo Teixeira (2 Replies)
Discussion started by: haroldo
2 Replies

7. Shell Programming and Scripting

Email alert doesnt contain any message

I have created a script which will monitor disk space in unix, it will send an email alert that will notify the specified receipients. I used echo in the mailx command but the email doesnt contain any message. I have used printf to store the message ($message2) and when tried to display on the... (2 Replies)
Discussion started by: lscanaleta
2 Replies

8. Shell Programming and Scripting

loop doesnt work

It just does the break...even though the files are not the same... # Compare extracts #========================================== count=0 while (( count < 5 )) do (( count+=1 )) echo "Try $count" file1=$(ls -l /tmp/psjava.xml|... (5 Replies)
Discussion started by: sigh2010
5 Replies

9. AIX

Vi doesnt work

Hi Guys, I have a strange problem.( AIX 6.1) "vi" is not working at all..Whenever i #vi <anythin> ,, it returns the prompt back. Any clues folks?? (14 Replies)
Discussion started by: muzahed
14 Replies

10. UNIX for Dummies Questions & Answers

why doesnt it work?

I am trying to print out two fields in a file using awk. So, I have got awk -F '\t' 'NF = 2 {print $1 $2 "]"}' two.txt in a script called what.awk When i run this version like this - ./what.awk then it runs however I want to run the program like this awk -f what.awk two.txt. When I... (8 Replies)
Discussion started by: The undertaker
8 Replies
MSGRCV(2)						      BSD System Calls Manual							 MSGRCV(2)

NAME
msgrcv -- receive a message from a message queue LIBRARY
Standard C Library (libc, -lc) SYNOPSIS
#include <sys/msg.h> ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); DESCRIPTION
The msgrcv() function receives a message from the message queue specified in msqid, and places it into the user-defined structure pointed to by msgp. This structure must contain a first field of type long that will indicate the user-defined type of the message. The remaining fields will contain the contents of the message. The following is an example of what this user-defined structure might look like: struct mymsg { long mtype; /* message type */ char mtext[1]; /* body of message */ }; mtype is an integer greater than 0 that can be used to select messages. mtext is an array of bytes, with size up to the system limit MSGMAX. The value of msgtyp has one of the following meanings: o msgtyp is greater than 0. The first message of type msgtyp will be received. o msgtyp is equal to 0. The first message on the queue will be received. o msgtyp is less than 0. The first message of the lowest message type that is less than or equal to the absolute value of msgtyp will be received. msgsz specifies the maximum length of the requested message. If the received message has a length greater than msgsz it will be silently truncated if the MSG_NOERROR flag is set in msgflg, otherwise an error will be returned. If no matching message is present on the message queue specified by msqid, the behaviour of msgrcv() depends on whether the IPC_NOWAIT flag is set in msgflg or not. If IPC_NOWAIT is set, then msgrcv() will immediately return a value of -1 and set errno to EAGAIN. If IPC_NOWAIT is not set, the calling process will block until: o A message of the requested type becomes available on the message queue. o The message queue is removed, in which case -1 will be returned and errno set to EIDRM. o A signal is received and caught. -1 is returned and errno is set to EINTR. If a message is successfully received, the data structure associated with msqid is updated as follows: o msg_lrpid is set to the pid of the caller. o msg_lrtime is set to the current time. o msg_qnum is decremented by 1. RETURN VALUES
Upon successful completion, msgrcv() returns the number of bytes received into the mtext field of the structure pointed to by msgp. Other- wise, -1 is returned, and errno set to indicate the error. ERRORS
msgrcv() will fail if: [E2BIG] A matching message was received, but its size was greater than msgsz and the MSG_NOERROR flag was not set in msgflg. [EACCES] The calling process does not have read access to the message queue. [EAGAIN] There is no message of the requested type available on the message queue, and IPC_NOWAIT is set in msgflg. [EFAULT] msgp points to an invalid address. [EIDRM] The message queue identifier msqid is removed from the system. [EINTR] The system call was interrupted by the delivery of a signal. [EINVAL] msqid is not a valid message queue identifier The message queue was removed while msgrcv() was waiting for a message of the requested type to become available in it. msgsz is greater than SSIZE_MAX. [ENOMSG] The queue does not contain a message of the desired type and IPC_NOWAIT is set. SEE ALSO
msgctl(2), msgget(2), msgsnd(2) STANDARDS
The msgrcv system call conforms to X/Open System Interfaces and Headers Issue 5 (``XSH5''). HISTORY
Message queues appeared in the first release of AT&T System V UNIX. BSD
January 26, 2009 BSD
All times are GMT -4. The time now is 09:45 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy