STL을 공유메모리에 올리는 것이 가능한가요?

webper81의 이미지

다름이 아니라 이번에 프로젝트를 진행하게 되면서

미들웨어를 만들게 되었습니다. 그런데 대용량의 데이터 처리와

견고한 자료구조가 필요해서 STL + shared memory 를

이용하게 되었습니다.

기본적인 코든는

.... 생략

deque<char*> *m_queue;

if( ( m_shmID = shmget( m_shmKey, m_size, flag ) ) < 0 )
	{
		fprintf( stderr, "shmget error(%d)[%s]\n",
				errno, strerror( errno ) );
		return -1;
	}

	if( ( m_semID = semget( m_semKey, 1, flag ) ) < 0 )
	{
		fprintf( stderr, "semget error(%d)[%s]\n",
				errno, strerror( errno ) );
		return -1;
	}

                char* base;
	
                base = (char*)shmat( m_shmID, NULL, 0 );
	
	m_queue = (deque<char*> *) base 

..... 생략

이렇게 진행이 됩니다. 그런데 샘플 코드를 만들어 놓고 실행하니

메모리 참조를 못하는 것 같습니다. 대략 난감 ㅡㅡ;

혹시 여러분들중에서 위와 같은 방법으로 코드를 작성하신 분 계신가요?

있다면 조언좀 부탁드립니다.

익명 사용자의 이미지

STL이 thread-safe한가요?!

amister의 이미지

원하시는 바가 제대로 동작하도록 하시려면, shared memory를 사용하는 allocator를 만들고, container 만들 때 해당 allocator를 지정하는 식이 되어야 할 것 같습니다.

저렇게 컨테이너 자체만 넣어봤자, 내부적으로 사용하는 데이터들은 heap에 allocate될테니 공유되지 않습니다.

singlet의 이미지

Anonymous wrote:
STL이 thread-safe한가요?!

Thread-safety for SGI STL:
Quote:
SGI STL provides what we believe to be the most useful form of thread-safety... The SGI implementation of STL is thread-safe only in the sense that simultaneous accesses to distinct containers are safe, and simultaneous read accesses to to shared containers are safe. If multiple threads access a single container, and at least one thread may potentially write, then the user is responsible for ensuring mutual exclusion between the threads during the container accesses.
singlet의 이미지

공유 메모리를 다뤄 본 경험은 거의 전무에 가까운지라 추정에 불과합니다만;;

webper81 wrote:
deque<char*> *m_queue;

m_queue 가 가리키는 deque 자체는 공유 메모리에 올라갈 수 있습니다만, deque 에서 할당하는 모든 메모리는 기본 할당자를 사용하여 할당될테니 amister 님 지적대로 heap 으로 갈 겁니다. 결국 공유 메모리에는 자료는 커녕 내부 자료 구조마저도 존재하지 않는 빈 껍데기만 덜렁 앉아 있겠죠. 따라서 할당자가 필요할 것 같네요.
deque<char*, shared_allocator<char*> > *m_queue;
그런데 deque 내부적으로 포인터를 쓰고 있으니까 공유 메모리가 붙는 메모리 주소가 똑같아야만 하겠군요. 그렇지 못하다면 기껏 공유 메모리에 컨테이너를 올려 봤자 포인터들이 전부 엉뚱한 주소를 갖고 있어서 제대로 동작하지 못하겠지요. 두 가지만 해결하시면 일단은 돌아가지 않을까 싶습니다.

댓글 달기

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