리눅스프로그래밍 초짜입니다 다시 한번 pthread관련 질문을 ㅜㅜ

1lee123의 이미지

void *t_function(void *data)
{
int id;
int i = 0;
id = *((int *)data);

while(1)
{
printf("%d : %d\n", id, i);
i++;
sleep(1);
}
}

int main()
{
pthread_t p_thread[2];
int status;
int a = 1;
int b = 2;

pthread_create(&p_thread[0], NULL, t_function, (void *)&a);
// pthread_join(p_thread[0], (void **)&status);

pthread_create(&p_thread[1], NULL, t_function, (void *)&b);

pthread_join(p_thread[0], (void **)&status);
pthread_join(p_thread[1], (void **)&status);

return 0;
}

위의 코드를 실행 시키면 두개의 스레드가 생성되고 각 스레드에서 t_function이 실행이 됩니다

그런데요 지금 pthread_create(&p_thread[1]... 이 함수 밑의 pthread_join 코드를 삭제하고 pthread_create(&p_thread[0],.. 밑의 pthread_join을 주석을 풀고 테스트 해보았습니다
그랬더니 pthread_create(&p_thread[0].. 에 등록된 t_function 함수만 스레드 생성 후 실행을 하더라구요;;;
제가 이부분이 이해가 되지 않습니다

pthread_join함수가 호출이 되면 그 전에 pthread_create에서 등록한 함수가 종료될때까지 블러킹이 되는걸로 이해가 됬는데 pthread_join함수를 나란히 호출하면 어떻게 계속 스레드를 join 시킬수가 있는건지 ㅜㅜㅜ

towstock의 이미지

pthread_join은 thread가 종료되기를 기다립니다. thread가 종료되기 위해서는 t_function 함수가 return을 해야합니다.

그런데, t_function 함수는 return을 하지 않고 무한 loop을 돌고 있습니다.

그러므로 pthread_join을 pthread_create(&p_thread[0], NULL, t_function, (void *)&a); 라인 다음에 넣으시면
pthread_join은 thread가 종료되길 계속 기다리고 있습니다.
결론적으로 하나의 thread만 생성되는 것이죠. ( pthread_create(&p_thread[1], NULL, t_function, (void *)&b); 라인은
첫번째 thread가 종료될 때까지 호출되지 않는 것이죠. )

마찬가지로 위 코드를 실행시키시면 프로그램은 영원히 끝나지 않습니다.
pthread_join(p_thread[0], (void **)&status); 라인에서 영원히 기다리고 있겠죠.

pthread_join을 호출하시기 전에 t_function 함수가 무한 loop에서 빠져나오게 하신 다음에 pthread_join을 호출해야합니다.

1lee123의 이미지

답변 감사합니다
여기서 많은 도움을 얻고 갑니다^^

댓글 달기

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