Linux線程基本使用代碼示範範例

來源:互聯網
上載者:User

標籤:can   rac   oid   thread   create   name   eth   ack   linu   

#include <pthread.h>#include <stdio.h>#include <unistd.h>void* thread_func(void* param){    const char* p = (const char*)param;    pid_t pid = 0;    pthread_t tid = 0;    pid = getpid();    tid = pthread_self();    printf("%s -> %8u %8u\n", p, (unsigned int)pid, (unsigned int)tid);}void* thread_wait_cancel(void* p){    printf("thread wait cancel -> i‘m waitting for cancel\n");    sleep(10000);    printf("if u saw me, there got be something wrong\n");}int main(int argc, char* argv[]){    pthread_t tid = 0;    pthread_create(&tid, NULL, thread_func, (void *)"sub  thread");        pthread_t tid_cancel = 0;    pthread_create(&tid_cancel, NULL, thread_wait_cancel, NULL);    // wait thread tid to exit    pthread_join(tid, NULL);        // cancel a thread    void* stat = 0;    pthread_cancel(tid_cancel);    pthread_join(tid_cancel, &stat);    /* stat = -1 stand for PTHREAD_CANCELED */    printf("cancel thread exit state : %d\n", stat);    // show main thread infomation    thread_func((void *)"main thread");    return 0;}



注意編譯的時候須要加上選項-lpthread。由於pthread不是linu的預設庫,例如以下所看到的:

gcc thr.c -lpthread


Linux線程基本使用代碼示範範例

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.