C __thread 변수에 대하여

blackkey의 이미지

C 에서 여러 쓰레드들이 동시에 빈번하게 읽는 변수를 __thread 변수를 사용하여 read 속도를 올리려고 합니다.

static __thread struct data_s test;

위와 같이 구조체 thread 변수를 선언하고 다른 파일에서 읽을 수 있도록 인터페이스 함수를 아래와 같이 만들어 주었습니다.

void* get_test_addr(void)
{
    return &test;
}

그리고 다른 파일에서 위 함수를 통해 호출을 하면 접근할 수 없는 메모리에 접근이 되네요
(데몬 시작 할 때 다른 파일 초기화 함수에서 호출하였습니다.)

__thread 변수 특성을 제가 잘 몰라서 그런 듯 한데 조언 부탁 드립니다.

라스코니의 이미지

__thread 키워드에 대해서는 잘 모르겠는데 static 선언이면 다른 소스 파일에서 볼수 없게 하는 것 아닌가요?
같은 소스 파일에 넣어 보세요.

ymir의 이미지

https://gcc.gnu.org/onlinedocs/gcc/Thread-Local.html

__thread 는 해당 변수를 TLS(thread-local storage) 로 생성하는 키워드입니다.
thread 별로 instance 가 만들어져서 고유의 주소 공간을 갖게 되기 때문에, thread 간에 서로 공유할 수 없습니다.
하나의 thread 에서 test 의 값을 변경하더라도, 다른 thread 에서는 변경된 값을 알 수 없다는 뜻입니다.
만약 thread 들이 해당 변수의 값을 공유해야 한다면, __thread 키워드를 사용하면 안 됩니다.

TLS 와 관련된 함수로는 pthread_getspecific() 계열 함수들이 있는데, __thread 가 좀 더 빠르다네요.
https://die4taoam.tistory.com/37

되면 한다! / feel no sorrow, feel no pain, feel no hurt, there's nothing gained.. only love will then remain.. 『 Mizz 』

jick의 이미지

조금 더 자세히 설명하자면, __thread로 선언된 변수는 이름이 같아도 서로 다른 쓰레드에서 전혀 다른 영역을 가리키고 있게 됩니다. 그러니까,

__thread int x;
 
// inside thread 1
x = 1;
 
// inside thread 2
x = 2;

이렇게 하면 각각 서로 다른 값을 보게 됩니다. 하지만 모두 하나의 프로세스 안에 있기 때문에, 그 변수의 주소값을 알 수 있으면 다른 쓰레드에서도 주소를 통해 접근할 수 있습니다.

int *xptr;  // global variable
__thread int x;
 
// inside thread 1
x = 1;
xptr = &x;
 
// inside thread 2
x = 2;
printf("%d\n", x);  // prints 2
printf("%d\n", *xptr);  // prints 1

댓글 달기

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