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
74 프로세스 능력 성숙도 모델(CMMI)의 적용 digipine 2017.10.28 1320
73 XCode 사용시 git ignore 로 xcuserstate 충돌 해결하기, .gitignore에 등록했는데도 동작안할때 해결방법 lizard2019 2022.09.25 1357
72 UML - 기본편 ( 기본 표기 형식 및 관계 표현법 ) digipine 2017.10.28 1369
71 Ubuntu 우분투 설치 가이드 lizard2019 2019.01.29 1385
70 Windows에서 SVN 용 폴더 한 번에 삭제하기 digipine 2017.10.29 1389
69 유닉스/리눅스 명령어 레퍼런스 digipine 2017.11.03 1396
68 MAC Screen Sharing을 위한 VNC 접속을 위한 Port 변경 방법 digipine 2022.09.05 1410
67 Linux/OSX bash에서 source 명령어 lizard2019 2019.01.07 1444
66 리눅스 커널의 Swap Memory에 대해서 digipine 2017.11.02 1448
65 MacOS 10.12.2 (OSX) 보안 취약점 공격 기초 digipine 2017.11.02 1448
64 악성코드 종류 구분 digipine 2017.11.13 1465
63 MacOS 10.12.2 (OSX) 보안 취약점 공격 코드 digipine 2017.11.02 1472
62 xcode xib encountered an error communicating with ibagent-ios 해결 digipine 2022.10.06 1497
61 select 와 epoll 엉뚱도마뱀 2017.12.11 1550
60 WIN CE C++ 시리얼 제어 방법 digipine 2017.10.28 1566
59 Certbot으로 무료 인증서 발급 받기 digipine 2020.09.03 1572
58 Linux(리눅스) 파일 시스템 정리 (ext, ext2, ext3, ext4) digipine 2017.10.29 1616
57 Wi-Fi Display Standard Miracast Protocol Log digipine 2017.11.02 1651
56 RSA 암호화 알고리즘 개요 file 엉뚱도마뱀 2017.11.17 1651
55 QCAD 1.1 한국 최초의 2D CAD 소프트웨어 file digipine 2017.11.01 1653
Board Pagination Prev 1 2 3 4 5 6 Next
/ 6