[질문] Linux에서 POSIX message queue 못쓰나요?

익명 사용자의 이미지

mqueue.h가 없네요.
Linux에서 POSIX message queue 사용 못하나요?
glibc-2.2.2입니다.
kernel 2.4구여

익명 사용자의 이미지

You can use the Message queue

Required header file is
#include
#include
#include /* <-- */

man msgctl
man msgget
man msgrcv
man msgsnd
will help you.

익명 사용자의 이미지

Kim wrote..
You can use the Message queue

Required header file is
#include<sys/types.h>
#include<sys/ipc.h>
#include<sys/msg.h> /* <-- */

man msgctl
man msgget
man msgrcv
man msgsnd

이것들은 System V message queue구요.
찾아보니 Linux에서는 아직 POSIX message queue와 POSIX
shared memory 등이 구현되지 않은 것 같네요.

익명 사용자의 이미지

맞아요..안되는걸로 알고있습니다.

system v 로 써도... 안되는게 없을겁니다..