리눅스에서 Posix Message Queue 사용

contr의 이미지

리눅스 커널 2.6.11에 gcc-3.3.5사용하고 있고, 커널 옵션에서
Support Posix Message 큐 체크 해 줬습니다.

그런데 다음 소스를 컴파일 하면

#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <linux/stat.h>
#include <sys/fcntl.h>
#include <sys/types.h>
#include <linux/types.h>
#include <linux/posix_types.h>

#define FILE_MODE	(S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH)

int main(int argc, char **argv)
{
    int		c, flags;
    mqd_t	mqd;
    flags = O_RDWR | O_CREAT;
    while ( (c = getopt(argc, argv, "e")) != -1) {
	switch (c) {
	case 'e':
	    flags |= O_EXCL;
	    break;
	}
    }
    if (optind != argc-1) {
	printf("usage: mqcreate [ -e ] <name>");
	exit(1);
    }

    mqd = mq_open(argv[optind], flags, FILE_MODE, NULL);
    mq_close(mqd);
    exit(0);
}

그런데 컴파일 하면 다음과 같은 에러가 나납니다.

pm.c: In function `main':
pm.c:16: error: `mqd_t' undeclared (first use in this function)
pm.c:16: error: (Each undeclared identifier is reported only once
pm.c:16: error: for each function it appears in.)
pm.c:16: error: syntax error before "mqd"
pm.c:30: error: `mqd' undeclared (first use in this function) 

그런데 mqd_t는 분명히 types.h에 정의가 되 있고요,
혹시나 해서 일일히 mqd_t 가 들어 있는 파일을 egrep 으로 찾아서 그 파일을 ""로 절대 경로로 추가시켜줘도 같은 에러만 나옵니다.

그래서 그냥 mqd_t 를 롱으로 바꿔 주어서 컴파일 하면

/tmp/ccU0UjV3.o(.text+0xa2): In function `main':
: undefined reference to `mq_open'
/tmp/ccU0UjV3.o(.text+0xb0): In function `main':
: undefined reference to `mq_close'
collect2: ld returned 1 exit status 

가 같은 에러 메시지가 나오니다.

라이브러리 추가 해 주기 위해

mn -A /usr/lib/lib* | grep mq_open

해도 심볼 검색이 안됩니다.

리눅스 에서 posix message queue 지원 하는거 맞나요?

아님 뭐가 잘못된 건지....

익명 사용자의 이미지

contr wrote:
리눅스 커널 2.6.11에 gcc-3.3.5사용하고 있고, 커널 옵션에서
Support Posix Message 큐 체크 해 줬습니다.

그런데 다음 소스를 컴파일 하면

#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <linux/stat.h>
#include <sys/fcntl.h>
#include <sys/types.h>
#include <linux/types.h>
#include <linux/posix_types.h>

#define FILE_MODE	(S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH)

int main(int argc, char **argv)
{
    int		c, flags;
    mqd_t	mqd;
    flags = O_RDWR | O_CREAT;
    while ( (c = getopt(argc, argv, "e")) != -1) {
	switch (c) {
	case 'e':
	    flags |= O_EXCL;
	    break;
	}
    }
    if (optind != argc-1) {
	printf("usage: mqcreate [ -e ] <name>");
	exit(1);
    }

    mqd = mq_open(argv[optind], flags, FILE_MODE, NULL);
    mq_close(mqd);
    exit(0);
}

그런데 컴파일 하면 다음과 같은 에러가 나납니다.

pm.c: In function `main':
pm.c:16: error: `mqd_t' undeclared (first use in this function)
pm.c:16: error: (Each undeclared identifier is reported only once
pm.c:16: error: for each function it appears in.)
pm.c:16: error: syntax error before "mqd"
pm.c:30: error: `mqd' undeclared (first use in this function) 

그런데 mqd_t는 분명히 types.h에 정의가 되 있고요,
혹시나 해서 일일히 mqd_t 가 들어 있는 파일을 egrep 으로 찾아서 그 파일을 ""로 절대 경로로 추가시켜줘도 같은 에러만 나옵니다.

그래서 그냥 mqd_t 를 롱으로 바꿔 주어서 컴파일 하면

/tmp/ccU0UjV3.o(.text+0xa2): In function `main':
: undefined reference to `mq_open'
/tmp/ccU0UjV3.o(.text+0xb0): In function `main':
: undefined reference to `mq_close'
collect2: ld returned 1 exit status 

가 같은 에러 메시지가 나오니다.

라이브러리 추가 해 주기 위해

mn -A /usr/lib/lib* | grep mq_open

해도 심볼 검색이 안됩니다.

리눅스 에서 posix message queue 지원 하는거 맞나요?

아님 뭐가 잘못된 건지....

1. 불필요한 header include가 많네요. 그리고 정작 중요한 녀석은 빠져있구요.

#include <sys/stat.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>

#include <mqueue.h>  /* XXX */

2. message queue는 RealTime library를 사용해야합니다.
즉, gcc file_name.c -lrt 처럼 "-lrt"를 해줘야 하죠.

contr의 이미지

불필요한 해더는..
어떤걸 추가해도 mqd_t 에서 정의 안됐다고 해서.. 이거 저거 넣어 본거구요

<mqueue.h>는 기본 경로에 없습니다. /usr/include 쪽

그래서
#include "/usr/src/linux/include/linux/mqueue.h"
를 해 줬는데, 별 차이가 없었고요.

이상한건.... /usr/include가 /usr/src/linux/include의 링크여야 하는데..
저는 별개로 되어있네요...

그리고, mqd_t 를 long형으로 바꾼다음

-lrt 옵셧을 줘도 똑같은 메시지가 나오네요...

(그런데 -lrt담에 -l라이브러리 해야 되는거 아닌가요?
그런데 그 라이브러리가 없습니다. nm -A 로 검색 했을때)

배포판은 데비안 우디 씁니다.

assasasa의 이미지

contr wrote:

(그런데 -lrt담에 -l라이브러리 해야 되는거 아닌가요?

저도 웹검색해서 알았는데요.
-lposix4 를 한번 붙여서 컴파일 해보세요.
님의 소스로 한번 컴파일 해볼려고 하니, 커널이배포본 설치할때의 커널이라, 커널소스의 mqueue.h 를 사용할 수가 없네요.

"마무리가 반이다" -- woox

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.