pthread_cond_wait에서 뮤텍스를 사용하는 이유?

mips의 이미지

pthread_cond_wait를 사용하는 코드를 보면 뮤텍스로 감싸놓은 경우가 있는데,
꼭 필요한 것인가요?

예를 들어서, 임계 영역이 따로 없고 아래와 같은 코드가 있다고 하면...

pthread_mutex_lock(&m);
pthread_cond_wait(&c, &m);
pthread_mutex_unlock(&m);

pthread_mutex_lock(&m)과 pthread_mutex_unlock(&m) 은 없어도 상관 없는 것 아닌가요?

그리고,

pthread_con_wait 함수 내부에서 사용되는 뮤텍스(여기서는 m)의 경우, 조건 변수에 대해 경쟁 조건을
방지하기 위해서 사용하는 것이라고 하는데, 위와 같은 코드에서 pthread_mutex_lock에 의해서
이미 락이 걸린 상태인데 어떻게 pthread_cond_wait 함수에서 다시 같은 뮤텍스에 대해서 락을
걸 수 있을 까요? (pthread_cond_wait에서 다시 락을 시도하면 데드락이 걸리는게 맞는것 같은데...)

bushi의 이미지

NAME
       pthread_cond_timedwait, pthread_cond_wait - wait on a condition
 
...중략...
 
DESCRIPTION
       The pthread_cond_timedwait() and pthread_cond_wait() functions shall
       block on a condition variable.  <span>They  shall  be  called  with  mutex
       locked by the calling thread or undefined behavior results</span>.
 
       These  functions  <span>atomically  release  mutex  and  cause the calling
       thread to block on the  condition  variable  cond;  atomically  here
       means  "atomically  with  respect to access by another thread to the
       mutex and then the condition variable"</span>. That is, if  another  thread
       is  able  to  acquire  the mutex after the about-to-block thread has
       released it, then a subsequent call to  pthread_cond_broadcast()  or
       pthread_cond_signal()  in  that  thread  shall  behave as if it were
       issued after the about-to-block thread has blocked.
 
...중략...
 
COPYRIGHT
       Portions of this text are reprinted  and  reproduced  in  electronic
       form  from  IEEE  Std 1003.1, 2003 Edition, Standard for Information
       Technology -- Portable Operating System Interface (POSIX), The  Open
       Group  Base  Specifications  Issue 6, Copyright (C) 2001-2003 by the
       Institute of Electrical and Electronics Engineers, Inc and The  Open
       Group.  In the event of any discrepancy between this version and the
       original IEEE and The Open Group Standard, the original IEEE and The
       Open  Group  Standard is the referee document. The original Standard
       can be obtained online at  <a href="http://www.opengroup.org/unix/online.html
" rel="nofollow">http://www.opengroup.org/unix/online.html
</a>       .
 
IEEE/The Open Group                  2003           PTHREAD_COND_TIMEDWAIT(3P)

OTL

댓글 달기

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