[완료] 간단한 code인데요, fc4에서와 fedora7에서 실행결과가 달라서 질문드립니다.

hyper9의 이미지

아래와 같은 간단한 code인데요.

FC4에서는 test_thread()에 있는 "test_thread" 문자열이 출력이 안되고요,
Fedora 7에서는 출력이 되네요.

뭐가 문제일까요? 조언 부탁드리고 싶습니다.

#include <stdio.h>
#include <pthread.h>
 
static void *test_thread(void *ctx);
 
static pthread_t test_pthread;
 
int main(void)
{
 
   int   err;   
 
   printf("main -1 \n");
   err = pthread_create(&test_pthread, NULL, test_thread, NULL);
   printf("main -2 [%d] \n", err);
 
   if (err)
      printf("unable start test_thread \n");
 
   return 0;     
}
 
void *test_thread(void *ctx)
{
   printf("test_thread  \n");
   return NULL;
}

출력 결과는
[FC 4]
main-1
main-2

[Fedora 7]
main-1
test_thread
main-2

이렇게 됩니다.
조언 부탁드릴게요. 미리 감사드립니다. ~

feanor의 이미지

위쪽의 실행 결과는 test_pthread가 실행되기 전에 프로세스가 끝나버려서 그렇습니다. 제 시스템에서는 여러번 실행하면 위쪽 결과도 나오고 아래쪽 결과도 나오네요.

test_pthread가 실행되게 하려면 메인 쓰레드에서 test_pthread를 기다려줘야 합니다. return 0; 전에 pthread_join(test_pthread, NULL); 을 넣으세요.

그러면 다음 두 가지 중 하나의 결과가 나오고 어느쪽이 나올지는 보장할 수 없습니다.

main -1
test_thread
main -2 [0]

main -1
main -2 [0]
test_thread

hyper9의 이미지

아래와 같이 해보았는데요...

말씀해주신대로,,,

pthread_join(test_thread, NULL);을
main()의 return 0 바로 앞 line에 추가했습니다.

그런데, 결과는 이전과 동일하게 계속 main-1, main-2만 찍고 있네요.
뭐가 잘못되어서 그런걸까요? ㅜㅜ

feanor의 이미지

pthread_join(test_thread, NULL); 아니고 pthread_join(test_pthread, NULL); 입니다. 혹시나 해서...

man페이지에 나오듯 pthread_join의 첫 번째 인자는 pthread_t이지 함수 포인터가 아닙니다.

hyper9의 이미지

지적해 주신내용처럼 잘못하고 있었네요,
고치고 나니까, 잘 됩니다.
감사드립니다 ~ ^^

댓글 달기

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