0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會員中心
創(chuàng)作中心

完善資料讓更多小伙伴認識你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

多線程編程基礎(chǔ)知識總結(jié)!

冬至子 ? 來源:嵌入式大雜燴 ? 作者:LinuxZn ? 2023-06-07 14:22 ? 次閱讀

什么是多線程編程

1、線程和進程的區(qū)別

進程是指正在運行的程序,它擁有獨立的內(nèi)存空間和系統(tǒng)資源,不同進程之間的數(shù)據(jù)不共享。

線程是進程內(nèi)的執(zhí)行單元,它與同一進程內(nèi)的其他線程共享進程的內(nèi)存空間和系統(tǒng)資源。

2、多線程的優(yōu)勢和應(yīng)用場景

多線程是一種并發(fā)編程方式,它的優(yōu)勢包括:

  • 提高程序的響應(yīng)速度和運行效率(多核CPU下的多線程)
  • 充分利用CPU資源,提高系統(tǒng)的利用率
  • 支持多個任務(wù)并行執(zhí)行,提高程序的可擴展性和可維護性

Linux下的多線程編程

Linux下C語言多線程編程依賴于pthread多線程庫。pthread庫是Linux的多線程庫,是POSIX標準線程API的實現(xiàn),它提供了一種創(chuàng)建和操縱線程的方法,以及一些同步機制,如互斥鎖、條件變量等。

頭文件:

`#include < pthread.h >  
`

編譯鏈接需要鏈接鏈接庫 pthread。

一、線程的基本操作

1、pthread_create

/**
 * @brief 創(chuàng)建一個線程
 *
 * Detailed function description
 *
 * @param[in] thread: 一個指向線程標識符的指針,線程調(diào)用后,該值被設(shè)置為線程ID;pthread_t為unsigned long int
 * @param[in] attr: 用來設(shè)置線程屬性
 * @param[in] start_routine: 線程函數(shù)體,線程創(chuàng)建成功后,thread 指向的內(nèi)存單元從該地址開始運行
 * @param[in] arg: 傳遞給線程函數(shù)體的參數(shù)
 *
 * @return 線程創(chuàng)建成功,則返回0,失敗則返回錯誤碼,并且 thread 內(nèi)容是未定義的
 */
int pthread_create(pthread_t* thread, const pthread_attr_t* attr, void*(*start_routine)(void*), void* arg);

例子test.c:創(chuàng)建一個線程,每1s打印一次。

`#include < stdio.h >  
#include < stdlib.h >  
#include < unistd.h >  
#include < pthread.h >  
  
static pthread_t s_thread_id;  
static unsigned char s_thread_running = 0;  
  
void *thread_fun(void *arg)  
{  
    s_thread_running = 1;  
    while (s_thread_running)  
    {  
        printf("thread run...\\n");  
        sleep(1);  
    }  
  
    pthread_exit(NULL);  
}  
  
int main(void)  
{  
    int ret = 0;  
  
    printf("Before Thread\\n");  
    ret = pthread_create(&s_thread_id, NULL, thread_fun, NULL);  
    if (ret != 0)  
    {  
        printf("thread_create error!\\n");  
        exit(EXIT_FAILURE);  
    }  
  
    ret = pthread_join(s_thread_id, NULL); ///< 阻塞等待線程結(jié)束  
    if (ret != 0)  
    {  
        printf("pthread_join error!\\n");  
        exit(EXIT_FAILURE);  
    }  
    printf("After Thread\\n");  
    exit(EXIT_SUCCESS);  
}  
`

編譯、運行:

`gcc test.c -o test -lpthread  
`

image.png

2、pthread_join

`/**  
 * @brief 等待某個線程結(jié)束  
 *  
 * Detailed function description: 這是一個線程阻塞函數(shù),調(diào)用該函數(shù)則等到線程結(jié)束才繼續(xù)運行  
 *  
 * @param[in] thread: 某個線程的ID  
 * @param[in] retval: 用于獲取線程 start_routine 的返回值  
 *  
 * @return 線程創(chuàng)建成功,則返回0,失敗則返回錯誤碼,并且 thread 內(nèi)容是未定義的  
 */  
int pthread_join(pthread_t thread, void **retval);  
`

例子test.c:創(chuàng)建一個線程,進行一次加法運算就返回。

`#include < stdio.h >  
#include < stdlib.h >  
#include < unistd.h >  
#include < pthread.h >  
  
static pthread_t s_thread_id;  
static unsigned char s_thread_running = 0;  
  
void *thread_fun(void *arg)  
{  
    static int res = 0;  
    int a = 1, b = 2;  
  
    res = a + b;  
    sleep(1);  
    printf("thread run, a + b = %d, addr = %p\\n", res, &res);  
  
    pthread_exit(&res);  
}  
  
int main(void)  
{  
    int ret = 0;  
    int *retval = NULL;  
  
    printf("Before Thread\\n");  
    ret = pthread_create(&s_thread_id, NULL, thread_fun, NULL);  
    if (ret != 0)  
    {  
        printf("pthread_create error!\\n");  
        exit(EXIT_FAILURE);  
    }  
  
    ret = pthread_join(s_thread_id, (void **)&retval); ///< 阻塞等待線程結(jié)束  
    if (ret != 0)  
    {  
        printf("pthread_join error!\\n");  
        exit(EXIT_FAILURE);  
    }  
    if (retval != NULL)  
    {  
        printf("After Thread, retval = %d, addr = %p\\n", (int)*retval, retval);  
    }  
  
    exit(EXIT_SUCCESS);  
}  
`

編譯、運行:

image.png

3、pthread_exit

`/**  
 * @brief 退出線程  
 *  
 * Detailed function description  
 *  
 * @param[in] retval: 它指向的數(shù)據(jù)將作為線程退出時的返回值  
 *  
 * @return void  
 */  
void pthread_exit(void *retval);  
`
  1. 線程將指定函數(shù)體中的代碼執(zhí)行完后自行結(jié)束;
  2. 線程執(zhí)行過程中,被同一進程中的其它線程(包括主線程)強制終止;
  3. 線程執(zhí)行過程中,遇到 pthread_exit() 函數(shù)結(jié)束執(zhí)行。

例子test.c:創(chuàng)建一個線程,每個1s打印一次,打印超過5次時調(diào)用pthread_exit退出。

#include < stdio.h >  
#include < stdlib.h >  
#include < unistd.h >  
#include < pthread.h >  
  
static pthread_t s_thread_id;  
static unsigned char s_thread_running = 0;  
const static char *thread_exit_str = "thread_exit ok!";  
  
void *thread_fun(void *arg)  
{  
    static int cnt = 0;  
      
    s_thread_running = 1;  
    while (s_thread_running)  
    {  
        cnt++;  
        if (cnt > 5)  
        {  
            pthread_exit((void*)thread_exit_str);  
        }  
        printf("thread run...\\n");  
        sleep(1);  
    }  
  
    pthread_exit(NULL);  
}  
  
int main(void)  
{  
    int ret = 0;  
    void *thread_res = NULL;  
  
    printf("Before Thread\\n");  
    ret = pthread_create(&s_thread_id, NULL, thread_fun, NULL);  
    if (ret != 0)  
    {  
        printf("thread_create error!\\n");  
        exit(EXIT_FAILURE);  
    }  
  
    ret = pthread_join(s_thread_id, (void**)&thread_res);  
    if (ret != 0)  
    {  
        printf("thread_join error!\\n");  
        exit(EXIT_FAILURE);  
    }  
    printf("After Thread, thread_res = %s\\n", (char*)thread_res);  
    exit(EXIT_SUCCESS);  
}

編譯、運行:

image.png

使用return退出線程與使用pthread_exit退出線程的區(qū)別?

return為通用的函數(shù)退出操作,pthread_exit專用與線程,既然pthread庫有提供專門的函數(shù),自然用pthread_exit會好些,雖然使用return也可以。

看看return退出線程與使用pthread_exit退出線程的具體區(qū)別:退出主線程。使用pthread_exit退出主線程只會終止當(dāng)前線程,不會影響進程中其它線程的執(zhí)行;使用return退出主線程,主線程退出執(zhí)行很快,所有線程都會退出。

例子:使用pthread_exit退出主線程

`#include < stdio.h >  
#include < stdlib.h >  
#include < unistd.h >  
#include < pthread.h >  
  
static pthread_t s_thread_id;  
static unsigned char s_thread_running = 0;  
const static char *thread_exit_str = "thread_exit ok!";  
  
void *thread_fun(void *arg)  
{  
    sleep(1);  
    printf("thread_fun run...\\n");  
    pthread_exit(NULL);  
}  
  
int main(void)  
{  
    int ret = 0;  
    void *thread_res = NULL;  
  
    printf("Before Thread\\n");  
    ret = pthread_create(&s_thread_id, NULL, thread_fun, NULL);  
    if (ret != 0)  
    {  
        printf("thread_create error!\\n");  
        exit(EXIT_FAILURE);  
    }  
      
    printf("main thread exit\\n");  
    pthread_exit(NULL);  
}  
`

編譯、運行:

image.png

例子:使用return退出主線程

`#include < stdio.h >  
#include < stdlib.h >  
#include < unistd.h >  
#include < pthread.h >  
  
static pthread_t s_thread_id;  
static unsigned char s_thread_running = 0;  
const static char *thread_exit_str = "thread_exit ok!";  
  
void *thread_fun(void *arg)  
{  
    sleep(1);  
    printf("thread_fun run...\\n");  
    pthread_exit(NULL);  
}  
  
int main(void)  
{  
    int ret = 0;  
    void *thread_res = NULL;  
  
    printf("Before Thread\\n");  
    ret = pthread_create(&s_thread_id, NULL, thread_fun, NULL);  
    if (ret != 0)  
    {  
        printf("thread_create error!\\n");  
        exit(EXIT_FAILURE);  
    }  
      
    printf("main thread exit\\n");  
      
    return 0;  
}  
`

編譯、運行:

image.png

4、pthread_self

`/**  
 * @brief 用來獲取當(dāng)前線程ID  
 *  
 * Detailed function description  
 *  
 * @param[in] void  
 *  
 * @return 返回線程id  
 */  
pthread_t pthread_self(void);  
`

例子:

#include < stdio.h >  
#include < stdlib.h >  
#include < unistd.h >  
#include < pthread.h >  
  
static pthread_t s_thread_id;  
static unsigned char s_thread_running = 0;  
const static char *thread_exit_str = "thread_exit ok!";  
  
void *thread_fun(void *arg)  
{  
    static int cnt = 0;  
      
    s_thread_running = 1;  
    while (s_thread_running)  
    {  
        cnt++;  
        if (cnt > 5)  
        {  
            pthread_exit((void*)thread_exit_str);  
        }  
        printf("thread run(tid = %ld)...\\n", pthread_self());  
        sleep(1);  
    }  
  
    pthread_exit(NULL);  
}  
  
int main(void)  
{  
    int ret = 0;  
    void *thread_res = NULL;  
  
    pid_t pid = getpid();  
    printf("pid = %d\\n", pid);  
  
    printf("Before Thread\\n");  
    ret = pthread_create(&s_thread_id, NULL, thread_fun, NULL);  
    if (ret != 0)  
    {  
        printf("thread_create error!\\n");  
        exit(EXIT_FAILURE);  
    }  
  
    ret = pthread_join(s_thread_id, (void**)&thread_res);  
    if (ret != 0)  
    {  
        printf("thread_join error!\\n");  
        exit(EXIT_FAILURE);  
    }  
    printf("After Thread, thread_res = %s\\n", (char*)thread_res);  
    exit(EXIT_SUCCESS);  
}

編譯、運行:

image.png

5、pthraad_detach

/**  
 * @brief 分離線程  
 *  
 * Detailed function description: 分離線程,線程結(jié)束是系統(tǒng)自動回收線程的資源  
 *  
 * @param[in] thread: 某個線程的ID  
 *  
 * @return 成功時返回0,失敗返回其他值  
 */  
int pthread_detach(pthread_t thread);

pthread_create創(chuàng)建的線程有兩種狀態(tài):joinable(可結(jié)合的)和unjoinable(不可結(jié)合的/分離的)。默認是joinable 狀態(tài)。

一個可結(jié)合的線程能夠被其他線程收回其資源和殺死;在被其他線程回收之前,它的存儲器資源(如棧)是不釋放的,所以以默認的屬性創(chuàng)建線程時,創(chuàng)建的線程時可結(jié)合的,我們需要對線程退出時調(diào)用pthread_join對線程資源進行回收。只有當(dāng)pthread_join函數(shù)返回時,創(chuàng)建的線程才算終止,才能釋放自己占用的系統(tǒng)資源。

一個不可結(jié)合的線程,線程結(jié)束后會自動釋放占用資源。

因為pthread_join是一個阻塞的操作,而大多數(shù)時候主線程并不希望因為調(diào)用pthread_join而阻塞,并且大多數(shù)情況下不會使用線程函數(shù)體的返回值,所以這時候可以把線程創(chuàng)建為不可結(jié)合的/分離的。

把線程創(chuàng)建為不可結(jié)合的/分離的有兩種方式:

  • 在創(chuàng)建線程之后,使用pthraad_detach分離線程。
  • 在創(chuàng)建線程之前,使用pthread_attr_setdetachstate設(shè)置線程以不可結(jié)合的/分離的狀態(tài)創(chuàng)建。

例子:在創(chuàng)建線程之后,使用pthraad_detach分離線程。

#include < stdio.h >  
#include < stdlib.h >  
#include < unistd.h >  
#include < pthread.h >  
  
static pthread_t s_thread_id;  
static unsigned char s_thread_running = 0;  
  
void *thread_fun(void *arg)  
{  
    s_thread_running = 1;  
    while (s_thread_running)  
    {  
        printf("child thread run...\\n");  
        sleep(1);  
    }  
  
    pthread_exit(NULL);  
}  
  
int main(void)  
{  
    int ret = 0;  
  
    printf("Before Thread\\n");  
    ret = pthread_create(&s_thread_id, NULL, thread_fun, NULL);  
    if (ret != 0)  
    {  
        printf("thread_create error!\\n");  
        exit(EXIT_FAILURE);  
    }  
  
    ret = pthread_detach(s_thread_id);  
    if (ret != 0)  
    {  
        printf("pthread_detach error!\\n");  
        exit(EXIT_FAILURE);  
    }  
    printf("After Thread\\n");  
  
    while (1)  
    {  
        printf("main thread run...\\n");  
        sleep(1);  
    }  
      
    exit(EXIT_SUCCESS);  
}

編譯、運行:

image.png

pthread_join與pthraad_detach的區(qū)別:

  • pthread_detach()即主線程與子線程分離,兩者相互不干涉,子線程結(jié)束同時子線程的資源自動回收。
  • pthread_join()即是子線程合入主線程,主線程會一直阻塞,直到子線程執(zhí)行結(jié)束,然后回收子線程資源,并繼續(xù)執(zhí)行。

6、pthread_attr_init

`/**  
 * @brief 初始化一個線程對象的屬性  
 *  
 * Detailed function description  
 *  
 * @param[in] attr: 指向一個線程屬性的指針  
 *  
 * @return 成功時返回0,失敗返回其他值  
 */  
int pthread_attr_init(pthread_attr_t *attr);  
`

如果不設(shè)置線程屬性,線程則以默認屬性進行創(chuàng)建,默認的屬性值如:

image.png

例子:在創(chuàng)建線程之前,使用pthread_attr_setdetachstate設(shè)置線程以不可結(jié)合的/分離的狀態(tài)創(chuàng)建。

`#include < stdio.h >  
#include < stdlib.h >  
#include < unistd.h >  
#include < pthread.h >  
  
static pthread_t s_thread_id;  
static unsigned char s_thread_running = 0;  
  
void *thread_fun(void *arg)  
{  
    s_thread_running = 1;  
    while (s_thread_running)  
    {  
        printf("thread run...\\n");  
        sleep(1);  
    }  
  
    pthread_exit(NULL);  
}  
  
int main(void)  
{  
    int ret = 0;  
  
    printf("Before Thread\\n");  
    pthread_attr_t attr;  
    ret = pthread_attr_init(&attr);  
    if (ret != 0)  
    {  
        printf("pthread_attr_init error!\\n");  
        exit(EXIT_FAILURE);  
    }  
    pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);  ///< 線程以分離的狀態(tài)創(chuàng)建  
    ret = pthread_create(&s_thread_id, &attr, thread_fun, NULL);  
    if (ret != 0)  
    {  
        printf("thread_create error!\\n");  
        exit(EXIT_FAILURE);  
    }  
    printf("After Thread\\n");  
    pthread_attr_destroy(&attr);  ///< 銷毀線程屬性結(jié)構(gòu)  
  
    while (1)  
    {  
        sleep(1);  
    }  
      
    exit(EXIT_SUCCESS);  
}  
`

二、互斥鎖(mutex)的使用

互斥鎖用于保護一些公共資源。一些公共資源有可能會被多個線程共同使用,如果不做資源保護,可能會產(chǎn)生 意想不到的bug。

一個線程,如果需要訪問公共資源,需要獲得互斥鎖并對其加鎖,資源在在鎖定過程中,如果其它線程對其進行訪問,也需要獲得互斥鎖,如果獲取不到,線程只能進行阻塞,直到獲得該鎖的線程解鎖。

互斥鎖API:

`#include< pthread.h >    
///< 創(chuàng)建互斥對象,用指定的初始化屬性初始化互斥對象    
int pthread_mutex_init(pthread_mutex_t *mutex,    
                                       const pthread_mutex_attr_t *mutexattr);    
  
///< 加鎖    
int pthread_mutex_lock(pthread_mutex_t *mutex);    
  
///< 解鎖    
int pthread_mutex_unlock(pthread_mutex_t *mutex);    
  
///< 加鎖,但是如果對象已經(jīng)上鎖則返回EBUSY錯誤代碼而不阻塞    
int pthread_mmutex_trylock(pthread_mutex_t *mutex);    
  
///< 析構(gòu)并釋放mutex相關(guān)資源    
int pthread_mutex_destroy(pthread_mutex_t *mutex);    
`

互斥鎖有兩種創(chuàng)建方式:

  • 靜態(tài)創(chuàng)建:
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
  • 動態(tài)創(chuàng)建:
`pthread_mutex_t mutex;  
pthread_mutex_init(&mutex, NULL);  
`

pthread互斥鎖屬性包括:

  • PTHREAD_MUTEX_TIMED_NP:這是缺省值,也就是普通鎖。當(dāng)一個線程加鎖以后,其余請求鎖的線程將會形成一個等待隊列,并在解鎖后按優(yōu)先級獲得鎖。這種策略可以確保資源分配的公平性。
  • PTHREAD_MUTEX_RECURSIVE_NP:嵌套鎖。允許同一個線程對同一個鎖成功獲得多次,并通過unlock解鎖。如果是不同線程請求,則在加鎖線程解鎖時重新競爭。
  • PTHREAD_MUTEX_ERRORCHECK_NP:檢錯鎖。如果同一個線程請求同一個鎖,則返回EDEADLK,否則與PTHREAD_MUTEX_TIMED_NP類型動作相同,這樣就保證了當(dāng)不允許多次加鎖時不會出現(xiàn)最簡單情況下的死鎖。
  • PTHREAD_MUTEX_ADAPTIVE_NP:適應(yīng)鎖,動作最簡單的鎖類型,僅等待一小段時間,如果不能獲得鎖就放棄等待

互斥鎖使用形式:

`pthread_mutex_t mutex;  
pthread_mutex_init(&mutex,NULL);  ///< 初始化互斥鎖  
pthread_mutex_lock(&mutex);       ///< 加鎖  
///< 操作公共資源  
pthread_mutex_unlock(&mutex);     ///< 解鎖  
pthread_mutex_destroy(&mutex);    ///< 銷毀互斥鎖  
`

例子:

`#include < stdio.h >  
#include < stdlib.h >  
#include < unistd.h >  
#include < pthread.h >  
  
static pthread_t s_thread1_id;  
static pthread_t s_thread2_id;  
static unsigned char s_thread1_running = 0;  
static unsigned char s_thread2_running = 0;  
  
static pthread_mutex_t s_mutex;  
static int s_cnt = 0;  
  
void *thread1_fun(void *arg)  
{  
     printf("[%s]pthread_mutex_lock ------ s_cnt = %d\\n", __FUNCTION__, s_cnt);  
    pthread_mutex_lock(&s_mutex);    ///< 加鎖  
    for (size_t i = 0; i < 100; i++)  
    {  
        s_cnt++;  
    }  
    printf("[%s]pthread_mutex_unlock ------ s_cnt = %d\\n", __FUNCTION__, s_cnt);  
    pthread_mutex_unlock(&s_mutex);  ///< 解鎖  
      
    pthread_exit(NULL);  
}  
  
void *thread2_fun(void *arg)  
{  
    printf("[%s]pthread_mutex_lock ------ s_cnt = %d\\n", __FUNCTION__, s_cnt);  
    pthread_mutex_lock(&s_mutex);    ///< 加鎖  
    for (size_t i = 0; i < 100; i++)  
    {  
        s_cnt++;  
    }  
    printf("[%s]pthread_mutex_unlock ------ s_cnt = %d\\n", __FUNCTION__, s_cnt);  
    pthread_mutex_unlock(&s_mutex);  ///< 解鎖  
      
    pthread_exit(NULL);  
}  
  
int main(void)  
{  
    int ret = 0;  
  
    ///< 創(chuàng)建互斥量  
    ret = pthread_mutex_init(&s_mutex, NULL);  
    if (ret != 0)  
    {  
        printf("pthread_mutex_init error!\\n");  
        exit(EXIT_FAILURE);  
    }  
  
    ///< 創(chuàng)建線程1  
    ret = pthread_create(&s_thread1_id, NULL, thread1_fun, NULL);  
    if (ret != 0)  
    {  
        printf("thread1_create error!\\n");  
        exit(EXIT_FAILURE);  
    }  
    ret = pthread_join(s_thread1_id, NULL); ///< 阻塞等待線程結(jié)束  
    if (ret != 0)  
    {  
        printf("pthread1_join error!\\n");  
        exit(EXIT_FAILURE);  
    }  
  
    ///< 創(chuàng)建線程2  
    ret = pthread_create(&s_thread2_id, NULL, thread2_fun, NULL);  
    if (ret != 0)  
    {  
        printf("thread2_create error!\\n");  
        exit(EXIT_FAILURE);  
    }  
    ret = pthread_join(s_thread2_id, NULL); ///< 阻塞等待線程結(jié)束  
    if (ret != 0)  
    {  
        printf("pthread2_join error!\\n");  
        exit(EXIT_FAILURE);  
    }  
  
    printf("main thread, s_cnt = %d\\n", s_cnt);  
  
    ret = pthread_mutex_destroy(&s_mutex);  
    {  
        printf("pthread_mutex_destroy error!\\n");  
        exit(EXIT_FAILURE);  
    }  
  
    return 0;  
}  
`

編譯、運行:

image.png

三、條件變量的使用

條件變量是在線程中以睡眠的方式等待某一條件的發(fā)生,是利用線程間共享的全局變量進行同步的一種機制。

條件變量是線程可用的一種同步機制,條件變量給多個線程提供了一個會合的場所,條件變量與互斥量一起使用時,允許線程以無競爭的方式等待特定的條件發(fā)生。

條件變量API:

#include < pthread.h >  
///< 條件變量初始化  
int pthread_cond_init(pthread_cond_t *restrict cond, const pthread_condattr_t *restrict attr);  
  
///< 銷毀條件變量  
int pthread_cond_destroy(pthread_cond_t *cond);  
  
///< 等待條件變量  
int pthread_cond_wait(pthread_cond_t *restrict cond, pthread_mutex_t *restrict mutex);  
  
///< 帶有超時功能的 等待條件變量  
int pthread_cond_timedwait(pthread_cond_t *restrict cond,   
      pthread_mutex_t *restrict mutex,  
      const struct timespec *restrict tsptr);  
  
///< 通知條件變量,喚醒至少1個等待該條件的線程  
int pthread_cond_signal(pthread_cond_t *cond);  
  
///< 通知條件變量,廣播喚醒等待該條件的所有線程  
int pthread_cond_broadcast(pthread_cond_t *cond);

假如有兩個線程,線程1依賴于某個變量才能執(zhí)行相應(yīng)的操作,而這個變量正好是由線程2來改變的。這種情況下有兩種方案編寫程序:

方案一:線程1輪詢的方式檢測這個變量是否變化,變化則執(zhí)行相應(yīng)的操作。

方案二:使用條件變量的方式。線程1等待線程2滿足條件時進行喚醒。

其中,方案一比較浪費CPU資源。

條件變量的例子:創(chuàng)建兩個線程,線程1對全局計數(shù)變量cnt從0開始進行自增操作。線程2打印5的倍數(shù),線程1打印其它數(shù)。

`#include < stdio.h >  
#include < stdlib.h >  
#include < unistd.h >  
#include < pthread.h >  
  
static pthread_t s_thread1_id;  
static pthread_t s_thread2_id;  
static unsigned char s_thread1_running = 0;  
static unsigned char s_thread2_running = 0;  
  
static pthread_mutex_t s_mutex;  
static pthread_cond_t s_cond;  
static int s_cnt = 0;  
  
void *thread1_fun(void *arg)  
{  
    s_thread1_running = 1;  
    while (s_thread1_running)    
    {  
        pthread_mutex_lock(&s_mutex);    ///< 加鎖  
        s_cnt++;  
        pthread_mutex_unlock(&s_mutex);  ///< 解鎖  
  
        if (s_cnt % 5 == 0)  
        {  
            pthread_cond_signal(&s_cond);  ///< 喚醒其它等待該條件的線程  
        }  
        else  
        {  
            printf("[%s]s_cnt = %d\\n", __FUNCTION__, s_cnt);  
        }  
  
        usleep(100 * 1000);  
    }  
      
    pthread_exit(NULL);  
}  
  
void *thread2_fun(void *arg)  
{  
    s_thread2_running = 1;  
    while (s_thread2_running)  
    {  
        pthread_mutex_lock(&s_mutex);    ///< 加鎖  
        while (s_cnt % 5 != 0)  
        {  
            pthread_cond_wait(&s_cond, &s_mutex);   ///< 等待條件變量  
        }  
          
        printf("[%s]s_cnt = %d\\n", __FUNCTION__, s_cnt);  
        pthread_mutex_unlock(&s_mutex);  ///< 解鎖  
          
        usleep(200 * 1000);  
    }  
      
    pthread_exit(NULL);  
}  
  
int main(void)  
{  
    int ret = 0;  
  
    ///< 創(chuàng)建互斥量  
    ret = pthread_mutex_init(&s_mutex, NULL);  
    if (ret != 0)  
    {  
        printf("pthread_mutex_init error!\\n");  
        exit(EXIT_FAILURE);  
    }  
  
    ///< 創(chuàng)建條件變量  
    ret = pthread_cond_init(&s_cond, NULL);  
    if (ret != 0)  
    {  
        printf("pthread_cond_init error!\\n");  
        exit(EXIT_FAILURE);  
    }  
  
    ///< 創(chuàng)建線程1  
    ret = pthread_create(&s_thread1_id, NULL, thread1_fun, NULL);  
    if (ret != 0)  
    {  
        printf("thread1_create error!\\n");  
        exit(EXIT_FAILURE);  
    }  
    ret = pthread_detach(s_thread1_id);  
    if (ret != 0)  
    {  
        printf("s_thread1_id error!\\n");  
        exit(EXIT_FAILURE);  
    }  
  
    ///< 創(chuàng)建線程2  
    ret = pthread_create(&s_thread2_id, NULL, thread2_fun, NULL);  
    if (ret != 0)  
    {  
        printf("thread2_create error!\\n");  
        exit(EXIT_FAILURE);  
    }  
    ret = pthread_detach(s_thread2_id);  
    if (ret != 0)  
    {  
        printf("s_thread2_id error!\\n");  
        exit(EXIT_FAILURE);  
    }  
  
    while (1)  
    {  
        sleep(1);  
    }  
  
    return 0;  
}  
`

編譯、運行:

image.png

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問題,請聯(lián)系本站處理。 舉報投訴
  • Linux系統(tǒng)
    +關(guān)注

    關(guān)注

    4

    文章

    590

    瀏覽量

    27322
  • C語言
    +關(guān)注

    關(guān)注

    180

    文章

    7595

    瀏覽量

    135931
  • Pthread線程庫
    +關(guān)注

    關(guān)注

    0

    文章

    5

    瀏覽量

    5921
收藏 人收藏

    評論

    相關(guān)推薦

    labview多線程編程

    子曰:何為labview多線程編程?
    發(fā)表于 03-11 15:46

    Linux下多線程編程總結(jié)

    最近研究MySQL源碼,各種鎖,各種互斥,好在我去年認真學(xué)了《unix環(huán)境高級編程》, 雖然已經(jīng)忘得差不多了,但是學(xué)過始終是學(xué)過,拿起來也快。寫這篇文章的目的就是總結(jié)Linux 下多線程編程
    發(fā)表于 07-23 08:17

    C++面向?qū)ο?b class='flag-5'>多線程編程 (pdf電子版)

    C++面向?qū)ο?b class='flag-5'>多線程編程共分13章,全面講解構(gòu)建多線程架構(gòu)與增量多線程編程技術(shù)。第1章介紹了
    發(fā)表于 09-25 09:39 ?0次下載

    QNX環(huán)境下多線程編程

    介紹了QNX 實時操作系統(tǒng)和多線程編程技術(shù),包括線程間同步的方法、多線程程序的分析步驟、線程基本程序結(jié)構(gòu)以及實用編譯方法。QNX 是由加拿大
    發(fā)表于 08-12 17:37 ?30次下載

    linux多線程編程課件

    電子發(fā)燒友為您提供了linux多線程編程課件,希望對您學(xué)習(xí) linux 有所幫助。部分內(nèi)容如下: *1、多線程模型在單處理器模型和多處理器系統(tǒng)上,都能改善響應(yīng)時間和吞吐量。 *2、線程
    發(fā)表于 07-10 11:58 ?0次下載

    linux多線程編程開發(fā)

    本文中我們針對 Linux 上多線程編程的主要特性總結(jié)出 5 條經(jīng)驗,用以改善 Linux 多線程編程的習(xí)慣和避免其中的開發(fā)陷阱。在本文中,
    發(fā)表于 12-26 14:24 ?55次下載
    linux<b class='flag-5'>多線程</b><b class='flag-5'>編程</b>開發(fā)

    MFC下的多線程編程

    計算機上的上位機制作工具語言之MFC下的多線程編程
    發(fā)表于 09-01 14:55 ?0次下載

    VC-MFC多線程編程詳解

    VC編程中關(guān)于 MFC多線程編程的詳解文檔
    發(fā)表于 09-01 15:01 ?0次下載

    Windows多線程編程

    計算機上的上位機制作工具語言之Windows多線程編程,感興趣的可以看看。
    發(fā)表于 09-01 15:27 ?0次下載

    什么是多線程編程?多線程編程基礎(chǔ)知識

    摘要:多線程編程是現(xiàn)代軟件技術(shù)中很重要的一個環(huán)節(jié)。要弄懂多線程,這就要牽涉到多進程。本文主要以多線程編程以及
    發(fā)表于 12-08 16:30 ?1.3w次閱讀

    關(guān)于Linux下多線程編程技術(shù)學(xué)習(xí)總結(jié)

    Linux下多線程編程技術(shù) 作為一個IT人員,不斷的學(xué)習(xí)和總結(jié)是我們這個職業(yè)習(xí)慣,所以我會將每個階段的學(xué)習(xí)都會通過一點的總結(jié)來記錄和檢測自己的學(xué)習(xí)效果,今天為大家
    發(fā)表于 04-22 03:12 ?2179次閱讀
    關(guān)于Linux下<b class='flag-5'>多線程</b><b class='flag-5'>編程</b>技術(shù)學(xué)習(xí)<b class='flag-5'>總結(jié)</b>

    多線程編程指南的PDF電子書免費下載

    多線程編程指南》介紹了 SolarisTM 操作系統(tǒng) (Solaris Operating System, Solaris OS)中 POSIX?線程和 Solaris 線程
    發(fā)表于 06-11 08:00 ?4次下載
    <b class='flag-5'>多線程</b><b class='flag-5'>編程</b>指南的PDF電子書免費下載

    Linux中多線程編程知識

    Hello、Hello大家好,我是木榮,今天我們繼續(xù)來聊一聊Linux中多線程編程中的重要知識點,詳細談?wù)?b class='flag-5'>多線程中同步和互斥機制。
    發(fā)表于 04-26 17:27 ?583次閱讀
    Linux中<b class='flag-5'>多線程</b><b class='flag-5'>編程</b>的<b class='flag-5'>知識</b>點

    mfc多線程編程實例

    (圖形用戶界面)應(yīng)用程序的開發(fā)。在這篇文章中,我們將重點介紹MFC中的多線程編程。 多線程編程在軟件開發(fā)中非常重要,它可以實現(xiàn)程序的并發(fā)執(zhí)行,提高程序的效率和響應(yīng)速度。MFC提供了豐富
    的頭像 發(fā)表于 12-01 14:29 ?1379次閱讀

    socket 多線程編程實現(xiàn)方法

    在現(xiàn)代網(wǎng)絡(luò)編程中,多線程技術(shù)被廣泛應(yīng)用于提高服務(wù)器的并發(fā)處理能力。Socket編程是網(wǎng)絡(luò)通信的基礎(chǔ),而將多線程技術(shù)應(yīng)用于Socket編程,可
    的頭像 發(fā)表于 11-12 14:16 ?82次閱讀