RM新时代网站-首页

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

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

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

Linux下線程編程

wang123a ? 來源:嵌入式技術(shù) ? 作者:嵌入式技術(shù) ? 2022-08-24 15:42 ? 次閱讀

Linux下線程編程

1.線程相關(guān)函數(shù)

?1.1創(chuàng)建線程pthread_create

??pthread_create是Unix操作系統(tǒng)(Unix、linux等)的創(chuàng)建線程的函數(shù)。
??注:編譯時需要指定鏈接庫 -lpthread
??函數(shù)原型:

#include 
int pthread_create(pthread_t *thread, const pthread_attr_t *attr,void *(*start_routine) (void *), void *arg);
形參: thread — 指向線程標志符的指針類型為:pthread_t *
??attr — 設(shè)置線程屬性,默認填NULL。類型為:const pthread_attr_t *
??void *(*start_routine) (void *) — 函數(shù)指針,現(xiàn)在運行函數(shù)的起始地址
??arg — 運行函數(shù)的參數(shù)。不需要填NULL ,類型為:void *
返回值: 成功返回0;失敗返回錯誤編號。
??線程創(chuàng)建成功后,attr參數(shù)用于指定線程屬性,新創(chuàng)建的線程函數(shù)形參只有一個void *形參,若需要傳入的參數(shù)不止一個,則可以把需要傳入的參數(shù)保存到一個結(jié)構(gòu)體中,通過結(jié)構(gòu)體傳入。

??示例:

#include 
#include 
#include 
void *start_routine_func(void *arg)
{
    while (1)
    {
      printf("子線程運行中。。。\n");
      sleep(1);
    } 
}
int main()
{
    int stat;
    pthread_t pth;//線程標志符
    pthread_create(&pth,NULL,start_routine_func,NULL);
    while(1)
    {
        printf("主線程運行中。。。\n");
        sleep(1);
    }
}
[xsw@xsw 系統(tǒng)編程]$ gcc pthread.c -l pthread
[xsw@xsw 系統(tǒng)編程]$ ./a.out 
主線程運行中。。。
子線程運行中。。。
主線程運行中。。。
子線程運行中。。。
子線程運行中。。。
主線程運行中。。。

?1.2 退出線程pthread_exit

??函數(shù)原型:

void pthread_exit(void *retval);
函數(shù)功能:
??終止調(diào)用它的線程并通過形參返回一個指向某個對象的指針
形 參: void *retval — 線程需要返回的地址
返回值: 無
??注:線程結(jié)束必須釋放線程堆棧,也就是線程函數(shù)必須調(diào)用pthread_exit()結(jié)束,否則直到主進程函數(shù)退出才釋放。

??示例:

#include 
#include 
#include 
void *start_routine_func(void *arg)
{
    int cnt=0;
    while (1)
    {
      printf("子線程運行中cnt=%d。。。\n",cnt);
      sleep(1);
      cnt++;
      if(cnt>=3)break;
    } 
    pthread_exit(NULL);//退出線程,釋放堆棧
    
}
int main()
{
    int stat;
    pthread_t pth;//線程標志符
    /*創(chuàng)建子線線程*/
    if(pthread_create(&pth,NULL,start_routine_func,NULL)!=0)
    {
        printf("線程創(chuàng)建失敗\n");
        return 0;
    }
    printf("子線程ID=%lu\n",pth);
    /*等待線程退出*/
    pthread_join(pth,NULL);
    printf("線程退出成功\r\n");
    return 0;
}
[xsw@xsw 系統(tǒng)編程]$ gcc pthread.c -lpthread
[xsw@xsw 系統(tǒng)編程]$ ./a.out 
子線程ID=3078433648
子線程運行中cnt=0。。。
子線程運行中cnt=1。。。
子線程運行中cnt=2。。。
線程退出成功

?1.3 等待線程結(jié)束pthread_join

int pthread_join(pthread_t thread, void **retval);
函數(shù)功能:
??以阻塞方式等待thread指定線程結(jié)束,當函數(shù)返回值,被等待線程的資源被回收。若線程已經(jīng)結(jié)束,則立即返回。并且thread指定的線程必須是joinable(結(jié)合屬性)屬性。
形 參: thread — 線程標志符(線程ID)。線程唯一標志,類型為:pthread_t
??retval — 用戶定義的指針,用來存儲被等待線程返回的地址
返回值: 成功返回0,失敗返回錯誤編號。

??示例:

#include 
#include 
#include 
void *start_routine_func(void *arg)
{
    int cnt=0;
    while (1)
    {
      printf("子線程運行中cnt=%d。。。\n",cnt);
      sleep(1);
      cnt++;
      if(cnt>=3)break;
    } 
    pthread_exit(NULL);//退出線程,釋放堆棧
    
}
int main()
{
    int stat;
    pthread_t pth;//線程標志符
    /*創(chuàng)建子線線程*/
    if(pthread_create(&pth,NULL,start_routine_func,NULL)!=0)
    {
        printf("線程創(chuàng)建失敗\n");
        return 0;
    }
    printf("子線程ID=%lu\n",pth);
    /*等待線程退出*/
    pthread_join(pth,NULL);
    printf("線程退出成功\r\n");
    return 0;
}
[xsw@xsw 系統(tǒng)編程]$ gcc pthread.c -lpthread
[xsw@xsw 系統(tǒng)編程]$ ./a.out 
子線程ID=3078433648
子線程運行中cnt=0。。。
子線程運行中cnt=1。。。
子線程運行中cnt=2。。。
線程退出成功

?1.4 獲取當前線程標志符pthread_self

??函數(shù)原型:

pthread_t pthread_self(void);
函數(shù)功能:
??獲取線程自身ID。
形 參: 無
返回值: 返回當前線程標志符。pthread_t類型為unsigned long int,打印應(yīng)%lu。

??示例:

#include 
#include 
#include 
void *start_routine_func(void *arg)
{
    printf("子線程ID=%lu運行中。。。\n",pthread_self());
    pthread_exit(NULL);//退出線程,釋放堆棧
}
int main()
{
    int stat;
    int i=0;
    pthread_t pth;//線程標志符
    printf("主線程ID=%lu\n",pthread_self());
    /*創(chuàng)建5個子線線程*/
    for(i=0;i<5;i++)
    {
        if(pthread_create(&pth,NULL,start_routine_func,NULL)!=0)
        {
            printf("線程創(chuàng)建失敗\n");
            return 0;
        }
        printf("子線程ID=%lu\n",pth);
    }
    /*等待線程退出*/
    pthread_join(pth,NULL);
    printf("線程退出成功\r\n");
    return 0;
}
[xsw@xsw 系統(tǒng)編程]$ gcc pthread.c -lpthread
[xsw@xsw 系統(tǒng)編程]$ ./a.out 
主線程ID=3078706880
子線程ID=3078703984
子線程ID=3068214128
子線程ID=3057724272
子線程ID=3047234416
子線程ID=3036744560
子線程ID=3068214128運行中。。。
子線程ID=3078703984運行中。。。
子線程ID=3057724272運行中。。。
子線程ID=3047234416運行中。。。
子線程ID=3036744560運行中。。。
線程退出成功

?1.5 自動清理線程資源

??函數(shù)原型:

//注冊清理函數(shù)
void pthread_cleanup_push(void (*routine)(void *),void *arg);
//釋放清理函數(shù)
void pthread_cleanup_pop(int execute);
函數(shù)功能:
??線程清除處理函數(shù),用于程序異常退出的時候做善后的資源清理。自動釋放資源。
??注:pthread_cleanup_push函數(shù)與pthread_cleanup_pop函數(shù)需要成對調(diào)用。
形 參:
??void (*routine)(void *) — 處理程序函數(shù)入口
??void *arg — 傳遞給處理函數(shù)形參
??int execute — 執(zhí)行的狀態(tài)值,0 – 不調(diào)用清理函數(shù);1 – 調(diào)用清理函數(shù)。
返回值: 無
導(dǎo)致調(diào)用清理函數(shù)條件:
??1.調(diào)用pthread_exit()函數(shù)
??2.Pthread_claenup_pop的形參為1
??注:return不會導(dǎo)致清理函數(shù)調(diào)用。

??示例:

#include 
#include 
#include 
/*線程清理函數(shù)*/
void routine_Clinen(void *arg)
{
    printf("arg=%d\n",*(int *)arg);
    free(arg);
    printf("釋放空間完成\n");
}
/*子線程函數(shù)*/
void *start_routine_func (void *arg)
{
    printf("arg=%s,線程運行中...\n",arg);
    char *p=malloc(4);
    *p=100;
    //注冊線程清理函數(shù)
    pthread_cleanup_push(routine_Clinen,p);
    pthread_exit("子線程返回數(shù)據(jù)測試!");//釋放線程堆棧
   // return 0;//return終止不會觸發(fā)線程清理函數(shù)
    //調(diào)用線程清理函數(shù)
    pthread_cleanup_pop(1);
}
int main() 
{
    /*1.創(chuàng)建線程*/
    char buff[]="線程傳入?yún)?shù)測試";
    pthread_t thread;
    if(pthread_create(&thread,NULL,start_routine_func,buff)!=0)
    {
        printf("線程創(chuàng)建失敗\n");
        return 0;
    }
    printf("線程ID=%lu\n",pthread_self());
    char *p;
    pthread_join(thread,(void **)&p);//等待線程退出
    printf("子線程返回數(shù)據(jù):%s\n",p);
    printf("主線程退出\n");
    return 0;
}
[xsw@xsw 系統(tǒng)編程]$ gcc pthread.c -lpthread
[xsw@xsw 系統(tǒng)編程]$ ./a.out 
arg=線程傳入?yún)?shù)測試,線程運行中...
線程ID=3078866624
arg=100
釋放空間完成
子線程返回數(shù)據(jù):子線程返回數(shù)據(jù)測試!
主線程退出

審核編輯:湯梓紅

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

    關(guān)注

    87

    文章

    11292

    瀏覽量

    209322
  • 函數(shù)
    +關(guān)注

    關(guān)注

    3

    文章

    4327

    瀏覽量

    62569
  • 線程
    +關(guān)注

    關(guān)注

    0

    文章

    504

    瀏覽量

    19675
  • 線程編程
    +關(guān)注

    關(guān)注

    0

    文章

    5

    瀏覽量

    6127
收藏 人收藏

    評論

    相關(guān)推薦

    Linux下線程編程(2)

    線程(英語:thread)是操作系統(tǒng)能夠進行運算調(diào)度的最小單位。它被包含在進程之中,是進程中的實際運作單位。一條線程指的是進程中一個單一順序的控制流,一個進程中可以并發(fā)多個線程,每條線程
    的頭像 發(fā)表于 08-24 15:48 ?1716次閱讀

    Linux開發(fā)_采用線程處理網(wǎng)絡(luò)請求

    介紹Linux下網(wǎng)絡(luò)編程線程編程,select機制,利用子線程響應(yīng)TCP服務(wù)器的請求。
    的頭像 發(fā)表于 09-17 15:21 ?840次閱讀

    Linux線程編程基礎(chǔ)知識解析

    線程是輕量級的進程(`LWP: Light Weight Process`),在`Linux`環(huán)境下線程的本質(zhì)仍是`進程`,進程是資源分配的`最小單位`,線程是操作系統(tǒng)調(diào)度執(zhí)行的`最小
    發(fā)表于 07-14 16:41 ?803次閱讀
    <b class='flag-5'>Linux</b>多<b class='flag-5'>線程</b><b class='flag-5'>編程</b>基礎(chǔ)知識解析

    Linux線程編程手冊

    Linux線程編程手冊
    發(fā)表于 11-07 10:17

    嵌入式Linux線程編程

    嵌入式Linux線程編程-學(xué)習(xí)資源-華清遠見清遠見嵌入式學(xué)院:清遠見嵌入式學(xué)院:《嵌入式應(yīng)用程序設(shè)計》——第5 章 嵌入式Linux線程
    發(fā)表于 11-05 06:54

    如何對Linux系統(tǒng)多線程進行編程

    Linux系統(tǒng)編程第07期:多線程編程入門 6年嵌入式開發(fā)經(jīng)驗,在多家半導(dǎo)體...
    發(fā)表于 12-23 08:08

    linux線程編程課件

    電子發(fā)燒友為您提供了linux線程編程課件,希望對您學(xué)習(xí) linux 有所幫助。部分內(nèi)容如下: *1、多線程模型在單處理器模型和多處理器系
    發(fā)表于 07-10 11:58 ?0次下載

    linux線程編程開發(fā)

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

    線程編程Linux線程編程

    9.2 Linux線程編程 9.2.1 線程基本編程 這里要講的線程相關(guān)操作都是用戶空間中的
    發(fā)表于 10-18 15:55 ?3次下載

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

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

    Linux--線程編程

    影響??線程技術(shù)發(fā)展  Linux 2.2內(nèi)核    ?不存在真正意義上的線程  Linux 2 .4內(nèi)核    ?消除線程個數(shù)的限制,允許
    發(fā)表于 04-02 14:40 ?321次閱讀

    Linux下的多線程編程

    的進程可以考慮分為多個線程,成為幾個獨立或半獨立的運行部分,這樣的程序會利于理解和修改?! ∠旅嫖覀兿葋韲L試編寫一個簡單的多線程程序。2 簡單的多線程編程  
    發(fā)表于 04-02 14:43 ?603次閱讀

    Linux下線程與進程的區(qū)別

    線程(英語:thread)是操作系統(tǒng)能夠進行運算調(diào)度的最小單位。它被包含在進程之中,是進程中的實際運作單位。一條線程指的是進程中一個單一順序的控制流,一個進程中可以并發(fā)多個線程,每條線程
    的頭像 發(fā)表于 08-24 15:37 ?1855次閱讀
    <b class='flag-5'>Linux</b><b class='flag-5'>下線程</b>與進程的區(qū)別

    Linux中多線程編程的知識點

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

    linux線程編程實例

    linux線程
    的頭像 發(fā)表于 02-15 21:16 ?456次閱讀
    <b class='flag-5'>linux</b>多<b class='flag-5'>線程</b><b class='flag-5'>編程</b>實例
    RM新时代网站-首页