thread 관련 질문...

new5244의 이미지

Linux 에서 thread 프로그램을 테스트 중인데...

main 에서 pthread_create() 를 써서
thread 를 하나 만들었는데...

프로세스 trace 결과 새로 생성된 tread 만 돌고 main 프로세스는 thread 가 생성된 시점부터 먹통이 되네요...

Quote:
root 29029 29015 0 11:49 ? 00:00:00 /usr/local/test
root 29030 19029 0 11:49 ? 00:00:00 /usr/local/test
root 29015 1 0 11:49 ? 00:00:00 /usr/local/test

29015 번이 main 이고
29030 이 새로 생긴 thread 입니다.

Quote:
#strace -p 29015 먹통이라서 CTRL+C 로 종료
detach: checking sanity: Operation not permitted

#strace -p 29029
getppid() = 29015
poll([{fd=5, events=POLLIN}], 1, 2000) = 0
........

#strace -p 29030
fstat64(7, .....
.......

새로 생성된 thread 는(29030) 정상적으로 잘 도는데
main 이 먹통입니다.

혹시 이 증상의 원인에 대해 아시면 설명 부탁드립니다.

고도리의 이미지

어떻게 프로그램을 작성하셨는지는 모르겠지만...

일단 프로그램 질문할때는 약간의 중요코드라도 올려야 무슨 질문인지
정확하게 알 수가 있겠지요?........^^

오래돼서 가물가물 하긴하지만 그냥 기억하고 있는 것만 말씀드리면...

만일 pthread_create()를 호출하고 그 thread에 대해서
pthread_join을 호출하면 해당 시점에서 main이 멈추게 되어있을 겁니다.

pthread_join은 thread가 사용하는 thread 자체의 resource를 반환때까지
기다리겠다는 말이거든요...

그래서 pthread_join()을 안쓰고 thread가끝나던 말건 상관않겠다...
쓰레드 니가 알아서 해라라는 지시를 내리는 경우도 있는데

이때는 pthread_detatch()를 사용을 합니다.

detatch를 하게 되면 바로 다음부분으로 넘어갈 수 있겠죠...

질문에 대한 내용이 맞나 모르겠군요...프로그램이란 것은 코드를 보기전에는
얘기할 수가 없는 문제라서요...

그럼...

서명.....음, 서명이라...

아싸!!! Three Go!

new5244의 이미지

문제에 대한 설명이 부족했나보네요..

Quote:

main()
{

pthread_t tid;

.............

pthread_create(&tid, NULL, client, NULL) ;

main code ......

}

void *client(void *arg)
{
client code .......

}

사용한 것은 달랑 pthread_create() 밖에 없습니다.
문제는 pthread_create() 에서 생성된 thread 는 정상적으로 수행이 되는데,
main code 가 수행이 안됩니다.

그래서 프로세스를 trace 를 해봤더니 main 만 먹통이 된 것입니다.

from saibi

댓글 달기

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