fork()된 child process에서 변수의 값을 변화시키면

indizarm의 이미지

fork()된 child process에서 변수의 값을 변화시키면
parent process에 영향을 끼지치 못합니까?

int main()
{
    int i = 0;
    int cid;

    cid = fork();

    if(cid ==0)
    {
        ++i;
        return 0; 또는 break;
     }
     else
          wait();     

}

i의 값이 고정이더군요. -_-;;

isinji의 이미지

fork로 생성된 자식과 부모는 서로 다른 Address 영역을 갖습니다. 완전히 서로 다른 프로세스이기 때문에 서로 상대방의 메모리 영역을 Access할 수 없습니다.

sorcerer의 이미지

이미 답변 하셨듯이 안 됩니다.
그것때문에 IPC 를 사용하기도 하지요.
하지만 그보다 스레드를 사용하는게 더 편합니다.
물론 이 쪽도 이쪽 나름대로 동기화의 문제가 있기는 하지만 둘 다 해보고 편한 쪽을 선택하는 것도 괜찮겠지요..

SOrCErEr

indizarm의 이미지

답변 감사합니다. ^_^

What a Cool Days!!!

indizarm의 이미지

그냥 thread로 해버렸습니다. 말씀하신 것처럼
동기화 문제는 남았지만요.

그런데 thread에서는 자신을 생성한 process의
(main()함수나 아니면 현재 돌아가고 있는 함수의)
지역 변수를 볼 수 없습니까?

What a Cool Days!!!

daybreak의 이미지

못봅니다.

indizarm의 이미지

아, 예 못보더군요. ^_^

이름이 똑같아서 그냥 접근할 수 있을 줄 알았는데
그때 갑자기 생각난 'this' 포인터. -_-;;;

hybrid style의 code를 끄적거리는 저로써는 c와
c++의 경계를 명확히 해야겠다는거... (그래도
// 주석은 그냥 씁니다. -_-; 귀찮아서...)

하여간 IPC를 쓸까 thread를 쓸까하다가 그냥
thread로 했습니다.

아, 참 잠깐 돌아다니다가 tab8 vs tab4 싸움을 봤는데
재미있더군요. 그거 뒷 이야기 같은거 없나요?

좋은 꿈꾸세요

What a Cool Days!!!

kdoll의 이미지

갯수가 한정되어 있다면 쓰래드로 가는편이 좋구요.

서버프로세스 들 처럼 갯수가 무한히 증가한다면

프로세스에 IPC를 고려하심이 어떠신지요.

댓글 달기

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