im using linux posix mqueue implementation, and i got a bad situation. For current kernel, the max msg size is 1mb. But i need to have no limit. man mq_overview says that if the process is privileged (a process that has CAP_SYS_RESOURCE capability) it has no limits. I thought that a process executed by root was already privileged, but im still getting "message too long" error (my msg has 2mb).

How can i "add" CAP_SYS_RESOURCE capability to the process?

link|improve this question
feedback

2 Answers

try the option RLIMIT_MSGQUEUE in function: int setrlimit(int resource, const struct rlimit *rlim);

man page: http://www.kernel.org/doc/man-pages/online/pages/man2/setrlimit.2.html

:)

link|improve this answer
I set with RLIM_INFINITY and still got "message too long" =/ – Leonardo Alt Sep 18 '10 at 1:25
feedback

you can change the ceiling on the maximum message size on this file /proc/sys/fs/mqueue/msgsize_max I hope it works

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.