스레드에서 세마포어 질문;;

limasdf의 이미지

아.. 구현하는 방법을 모르거나 하면

여기저기 찾아봐서 하겠는데요..

요건 뭐가 틀렸는지..를 모르니;; 물어볼수밖에 없네요..ㅠㅠ

결과는

main1 : the result is 100000000
thread function : the result is 200000000

이렇게 나오길 바라는데..

main1 : the result is 178230819
thread function : the result is 200000000

이렇게 나오네요..-_-

#include <sys/types.h>
#include <sys/sem.h>
#include <pthread.h>
                                                                                    
void *thread_function(void *arg);
                                                                                    
int y=0;
struct sembuf psembuf={0,-1,SEM_UNDO};
struct sembuf vsembuf={0,1,SEM_UNDO};
int semId;
                                                                                    
int main()
{
        int semId;
        int i,j;        // for-loop
        pthread_t t_id;
                                                                                    
                                                                                    
        pthread_create(&t_id,NULL,thread_function,NULL);
        semId = semget(75,1,0777|IPC_CREAT);
        semctl(semId,0,SETVAL,1);
                                                                                    
                semop(semId,&psembuf,1);
                for(i=0;i<10000;i++)
                        for(j=0;j<10000;j++)
                                y = y+1;
                printf("main1 : the result is %d\n",y);
                semop(semId,&vsembuf,1);
                                                                                    
        sleep(1);
        return 0;
}
void *thread_function(void *arg)
{
                int z,k;
                semop(semId,&psembuf,1);
                for(z=0;z<10000;z++)
                        for(k=0;k<10000;k++)
                                y=y+1;
                printf("thread function : the result is %d\n",y);
                semop(semId,&vsembuf,1);
}

뮤텍스는 고려하지않고 세마포어로요..

익명 사용자의 이미지

main 함수안에
int semId 를 없애시고.. (전역에 있는데 왜 하신건지...)
메인 프로세스에서 pthread_join 으로 쓰레드를 기다리시던지..
sleep(10) 정도 주세요 그럼 됩니다... ^_^ 그럼 수고..

IsExist의 이미지

pthread_create 함수 호출을 semctl 이후에 하시고

main에서 v op 후에 pthread_join (t_id, NULL) 을 호출해 주세요.

그리고 semctl 호출이 잘못된거 같은데요

int val = 1;
...
semctl (semId, 0, SETVAL, &val);

로 호출하세요.
우연히 thread_function 함수의 semop가 먼저 불려진다면 값은 뒤 바뀌어
출력됩니다.

---------
간디가 말한 우리를 파괴시키는 7가지 요소

첫째, 노동 없는 부(富)/둘째, 양심 없는 쾌락
셋째, 인격 없는 지! 식/넷째, 윤리 없는 비지니스

이익추구를 위해서라면..

다섯째, 인성(人性)없는 과학
여섯째, 희생 없는 종교/일곱째, 신념 없는 정치

limasdf의 이미지

감사합니다 ㅠㅠ

질문자의 태도를 제대로 갖추지못한(소스 확인!!) 저의 태도를 용서해주세요..

감사합니다 님의 답변이 저에게는 아주 큰힘;이 되었답니다^^;

댓글 달기

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