메세지 큐에 대한 초보적 질문입니다 ㅠ

zzion의 이미지

os 를 공부하면서 프로세스간 통신에서 메세지 큐를 보고있는데요,,

공부를 하며 간단한 프로그램을 짜보았습니다.
쓰레드를 2개 만들어서 하나는 메세지큐를 이용해 보내고
다른 하나는 받아서 printf 로 출력 하도록 했는데요,,,

msgsnd 를 이용해 보낸후 그다음 처리가 어떻게 되나요? ㅠ
무슨 말인가 하면,, 제 경우에 for loop으로 msgsnd 를 10개 하려 하는데 한번만 하고 중지합니다; thread 종료도 되지 않구요;;

자연히 리시버는 1개반 받네요;

프로그래밍 초보에게 빛을 주세요! ㅠ 다음은 짜본 소스입니다.

#include 'stdio.h>
#include 'stdlib.h>
#include 'string.h>
#include 'unistd.h>
#include 'sys/types.h>
#include 'sys/ipc.h>
#include 'sys/msg.h>
#include 'pthread.h>
 
 
// 공유할 데이터를 위한 구조체 및 선언
struct data 
{
	long  data_type;
	int   data_num;
	char  data_buff[1024];
};
 
struct data b_data;
 
 
// 첫번째 thread : 메세지 전송
void *thread_1()
{
 
	int msqid;
	int ndx = 0;
	int send;
 
	// 메세지 큐 생성
	msqid = msgget((key_t)1234, IPC_CREAT|0666); 
    if (msqid == -1) 
    { 
        perror("msgget error : "); 
        exit(1); 
    } 
 
	for ( ndx = 0; ndx < 10; ndx++)
	{
		b_data.data_type = 0;	// data type 을 0로 통일
		b_data.data_num  = ndx;
 
		//메세지 기록 : help me!!
		sprintf( b_data.data_buff, "type=%d, ndx=%d, help me!!", b_data.data_type, ndx);
 
		send = msgsnd(msqid, &b_data, sizeof(b_data) - sizeof(long), 0);
		if (send == -1 )
		{
			perror("msgsnd() 실패");
			exit(1);
		}
 
	}
 
	return NULL;
}
 
// 두번째 thread : 메세지 받기
void *thread_2()
{
	int msqid;
	int ndx;
	int receive;
	struct msqid_ds msqstat;
 
	// 메세지 큐 생성
	msqid = msgget((key_t)1234, IPC_CREAT|0666); 
 
    if (msqid == -1) 
    { 
        perror("msgget error : "); 
        exit(1); 
    } 
 
	if (msgctl( msqid, IPC_STAT, &msqstat) == -1 )
	{
		perror( "msgctl() 실패");
		exit(1);
	}
 
	for ( ndx = 0; ndx < msqstat.msg_qnum; ndx++)
	{
		receive = msgrcv(msqid, &b_data, sizeof(b_data) - sizeof(long), 0, 0);
		if ( receive == -1 )
		{
			perror( "msgrcv() 실패");
			exit(1);
		}
		printf( "%d - %s\n", b_data.data_num, b_data.data_buff);
	}
 
	return NULL;
}
 
int main (int argc, const char * argv[])
{
 
 
    int thr_id;
	pthread_t p_thread[2];
	int status;
 
	// thread 생성
	thr_id = pthread_create(&p_thread[0], NULL, thread_1, NULL);
	//sleep(10);
	thr_id = pthread_create(&p_thread[1], NULL, thread_2, NULL);
 
	// thread 종료
	pthread_join(p_thread[0], (void **) &status);
	pthread_join(p_thread[1], (void **) &status);
 
	return 0;
}

ps // 여기 맨날 보기만 하다 처음 글쓰는데,,, 꺽인괄호 처리방법도 모르겠네요 ㅠ 인클루드 파일을 '> 로 묶었습니다.

zzion의 이미지

아직 완벽히 해결은 못했는데요,,
메세지 큐의 type은 0 을 제외한 정수랩니다;; 일단 거기서 틀렸고 다른곳도 문제가 있는것 같은데 열심히 찾고 있네요 ㅠ
(아 그리고 위 소스에 메세지큐를 보내는 구조체부분도 조금 잘못되었더래요;)

이러면서 많이 배우네요~ㅎ 시간은 너무 많이 걸리지만 ㅠ

rhheo의 이미지

mac osx에서는 잘 돌아가네요.

전역변수에도 주의하셔야겠어요.

#include &lt;stdio.h>
#include &lt;stdlib.h>
#include &lt;string.h>
#include &lt;unistd.h>
#include &lt;sys/types.h>
#include &lt;sys/ipc.h>
#include &lt;sys/msg.h>
#include &lt;pthread.h>
 
 
// 공유할 데이터를 위한 구조체 및 선언
struct data 
{
	long  data_type;
	char  data_buff[1024];
};
 
 
 
// 첫번째 thread : 메세지 전송
void *thread_1()
{
 
	int msqid;
	int ndx = 0;
	int send;
	struct data b_data;
 
	// 메세지 큐 생성
	msqid = msgget((key_t)1234, IPC_CREAT|0666); 
    if (msqid == -1) 
    { 
        perror("msgget error : "); 
        exit(1); 
    } 
 
	for ( ndx = 0; ndx < 10; ndx++)
	{
		b_data.data_type = 234;	// data type 을 0로 통일
		/*b_data.data_num  = ndx; */
 
		//메세지 기록 : help me!!
		sprintf( b_data.data_buff, "type=%d, ndx=%d, help me!!", b_data.data_type, ndx);
 
		send = msgsnd(msqid, &b_data, sizeof(b_data) - sizeof(long), 0);
		if (send == -1 )
		{
			perror("msgsnd() 실패");
			exit(1);
		}
 
	}
 
	return NULL;
}
 
// 두번째 thread : 메세지 받기
void *thread_2()
{
	int msqid;
	int ndx;
	int receive;
	struct msqid_ds msqstat;
	struct data b_data;
 
	// 메세지 큐 생성
	msqid = msgget((key_t)1234, IPC_CREAT|0666); 
 
    if (msqid == -1) 
    { 
        perror("msgget error : "); 
        exit(1); 
    } 
 
	if (msgctl( msqid, IPC_STAT, &msqstat) == -1 )
	{
		perror( "msgctl() 실패");
		exit(1);
	}
 
	for ( ndx = 0; ndx < 10; ndx++)
	{
		receive = msgrcv(msqid, &b_data, sizeof(b_data) - sizeof(long), 0, 0);
		if ( receive == -1 )
		{
			perror( "msgrcv() 실패");
			exit(1);
		}
		printf( "%s\n", b_data.data_buff);
	}
 
	return NULL;
}
 
int main (int argc, const char * argv[])
{
 
 
    int thr_id;
	pthread_t p_thread[2];
	int status;
 
	// thread 생성
	thr_id = pthread_create(&p_thread[0], NULL, thread_1, NULL);
	//sleep(10);
	thr_id = pthread_create(&p_thread[1], NULL, thread_2, NULL);
 
	// thread 종료
	pthread_join(p_thread[0], (void **) &status);
	pthread_join(p_thread[1], (void **) &status);
 
	return 0;
}

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.