[초보질문-_-]뮤텍스로 잠긴 변수를 단순히 읽기만 하는 문제

iamsjkim의 이미지

(환경 : linux gcc)
공용변수 flag가 정의되어 있을 경우
쓰레드 1에서 flag값을 변경하기 위해 뮤텍스 잠금을 했습니다.
그동안 메인 쓰레드에서는 flag값이 뭘로 설정되어있는지 확인하고 싶다고 가정한다면
메인 쓰레드는 flag값을 읽을 수 있나요?
아니면 쓰레드1이 뮤텍스 해제할때까지 flag값을 못읽고 블록되나요?

이런 질문이 가능한지도 잘 모르겠지만..T.T
아시는 분들께 답변 부탁드리겠습니다.

purewell의 이미지

일반적으로 Mutex는 풀리기 전까지 Block됩니다.

_____________________________
언제나 맑고픈 샘이가...
http://purewell.biz

김성진의 이미지

읽기위해서 mutex를 사용하지 않는다면,
당연히 읽을 수있지요.

그리고, 그 값이 consistenct 해야 한다면, word size일 경우
그냥 읽어도 되고,

더 클 경우 mutex를 사용하시는 게 낫습니다.

낫다고 한 이유는 Mutex없이 non-blocking 알고리즘을
사용해서 읽는 쓰레드와 쓰는 쓰레드간의 contention을 없애는
방법도 있기 때문입니다.

김성진 드림

고도의 추상화, 극도의 구체화, 에디슨을 그리워하다.

stoneshim의 이미지

Quote:
낫다고 한 이유는 Mutex없이 non-blocking 알고리즘을
사용해서 읽는 쓰레드와 쓰는 쓰레드간의 contention을 없애는
방법도 있기 때문입니다.

잘 모르는 이야기라서...

조금만 더 설명해 주실 수 있나요?

우리 모두 리얼리스트가 되자. 그러나 가슴에 이룰 수 없는 꿈을 가지자

sunyzero의 이미지

보통 queueing 문제를 service/distribution 형태로 제작할때 쓰레드간의 contention을 없앨수 있습니다.

보통 이 경우 master thread를 하나 두고 이 녀석이 queue를 관리합니다. 그리고 나서 service worker thread 들은 개별적으로 master thread 가 넣어주는 일감을 받는 sub queue를 가지고 있습니다. 보통 여기에는 master queue의 index만 들어가죠. 일감이 없으면 wait 상태로 들어가고, 일감이 생길때 master가 signal을 날리는 방식을 주로 쓰죠. 이렇게 하면 단 몇개의 쓰레들들은 master queue를 읽기만 하고, master thread는 쓰기만 하고 서로 넌블럭 상태로 작동하죠.

일반적으로 많이 사용되는 queueing algorithm 중에 하나입니다. 이렇게 함으로서 교묘하게 thundering herd 의 문제를 피해가죠.

========================================
* The truth will set you free.

댓글 달기

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