Hi Robert,
In my .c file, I create a pipe:
int ret_val = mkfifo(cCmdPipeName, 0666);
But the pipe file mnu_cmd has readonly
I set umask in the ~/.bashrc
umask 011
It still as readonly for everyone and group
The program is started as a service (/etc/init.d/mnu_control)
How to create an pipe that is readable/writable for everyone?
Thank You,
David