logo

English

이곳의 프로그래밍관련 정보와 소스는 마음대로 활용하셔도 좋습니다. 다만 쓰시기 전에 통보 정도는 해주시는 것이 예의 일것 같습니다. 질문이나 오류 수정은 siseong@gmail.com 으로 주세요. 감사합니다.

gcc thread and mutex 사용법

by lizard2019 posted Feb 27, 2019
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
#include <pthread.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>

// volatile 변수를 선언해서 lock으로 사용하는 예제
//volatile int lock = 0;
pthread_mutex_t lock;

int tot = 0;
void sum(int id)
{

        while(1){
            //while(lock) {
            //    usleep(100);
            //}
            //lock = 1;

            pthread_mutex_lock(&lock); // 다른 쓰레드에서 접근시 대기

            for(int i = 0; i <= 100 ; i++) {
                tot += i;
                usleep(500);
            }
            printf("thread%d = %d\n", id, tot);
            tot = 0;
            //lock = 0;
            pthread_mutex_unlock(&lock); // 다른 쓰레드에서 진행할 수 있도록 해제
            usleep(500);
        }
}

void* thread1()
{
    sum(1);
    return NULL;
}

void* thread2()
{
    sum(2);
        return NULL;
}

int main()
{
    int status;
    pthread_t tid1,tid2;

    // mutex를 사용하기 위해 초기화
    if (pthread_mutex_init(&lock, NULL) != 0)
    {
        printf("\n mutex init failed\n");
        return 1;
    }

    pthread_create(&tid1,NULL,thread1,NULL);
    pthread_create(&tid2,NULL,thread2,NULL);
    pthread_join(tid1,NULL);
    pthread_join(tid2,NULL);
    
    /// mutex 삭제
    pthread_mutex_destroy(&lock);

    return 0;
}
TAG •

List of Articles
No. Subject Author Date Views
92 Golang Channel 사용법 정리 digipine 2021.10.22 711
91 AWS EC2 Ubuntu 용 Docker 설치 스크립트 digipine 2021.09.01 603
90 Docker 모든 컨테이너를 Stop 또는 Remove 하는 방법 digipine 2021.09.01 678
89 Docker Compute Engine Ubuntu에서 Docker 설치 방법 lizard2019 2021.04.15 657
88 Docker에서 Phabricator 최신버전 설치 및 버전 확인 방법 file lizard2019 2021.04.15 1801
87 Ubuntu 18.04 에서 vsftpd 설치하기 lizard2019 2021.03.02 599
86 우분투 18.04 MongoDB 설치 및 구성 lizard2019 2021.02.26 699
85 Let's Encrypt SSL 인증서 자동 갱신 설정 방법 digipine 2020.09.03 1087
84 Certbot으로 무료 인증서 발급 받기 digipine 2020.09.03 844
83 MongoDB 설치 및 C 개발 도구 설정 1 digipine 2020.09.03 620
82 mongoose 3.8 싱글 파일 소스 코드 file digipine 2020.09.01 508
81 [iOS] Bluetooth로 App을 백그라운드 모드로 실행는 방법 lizard2019 2020.02.11 3801
80 How to Build FFMpeg for LAVFilters file lizard2019 2019.06.05 1781
79 How to FFMpeg Windows Build with msys 1.0 and MinGW_64 file lizard2019 2019.06.05 2526
78 C/C++ struct 패딩(padding) 원리 이해 lizard2019 2019.03.04 2431
» gcc thread and mutex 사용법 lizard2019 2019.02.27 1460
76 윈도우즈 도스 커멘드(Command) 네트워크 관련 명령어 lizard2019 2019.02.07 1668
75 Ubuntu 우분투 설치 가이드 lizard2019 2019.01.29 984
74 Linux/OSX bash에서 source 명령어 lizard2019 2019.01.07 974
73 Xcode 없이 맥에 '명령어 라인 도구(Command Line Tools)'를 설치하는 방법 엉뚱도마뱀 2018.12.26 3163
Board Pagination Prev 1 2 3 4 5 6 Next
/ 6