7 Linux程式設計入門 執行緒操作

2021-06-05 01:02:31 字數 2693 閱讀 6551

前言:linux下執行緒的建立

介紹在linux下執行緒的建立和基本的使用. linux下的執行緒是乙個非常複雜的問題,由

於我對執行緒的學習不時很好,我在這裡只是簡單的介紹執行緒的建立和基本的使用,關於線

程的高階使用(如執行緒的屬性,執行緒的互斥,執行緒的同步等等問題)可以參考我後面給出的

資料. 現在關於執行緒的資料在網路上可以找到許多英文資料,後面我羅列了許多鏈結,對

執行緒的高階屬**興趣的話可以參考一下. 等到我對執行緒的了解比較深刻的時候,我回來

完成這篇文章.如果您對執行緒了解的詳盡我也非常高興能夠由您來完善.

先介紹什麼是執行緒.我們編寫的程式大多數可以看成是單執行緒的.就是程式是按照一定的

順序來執行.如果我們使用執行緒的話,程式就會在我們建立線成的地方分叉,變成兩個"程

序"在執行.粗略的看來好象和子程序差不多的,其實不然.子程序是通過拷貝父程序的地

址空間來執行的.而執行緒是通過共享程式**來執行的,講的通俗一點就是執行緒的相同的

**會被執行幾次.使用執行緒的好處是可以節省資源,由於執行緒是通過共享**的,所以沒

有程序排程那麼複雜.

執行緒的建立和使用

執行緒的建立是用下面的幾個函式來實現的.

#include int pthread_create(pthread_t *thread,pthread_attr_t *attr,void *(*start_routine)(void *),void *arg);

void pthread_exit(void *retval);

int pthread_join(pthread *thread,void **thread_return);

pthread_create建立乙個執行緒,

thread是用來表明建立執行緒的id,

attr指出執行緒建立時候的屬性,我們用null來表明使用預設屬性.

start_routine函式指標是執行緒建立成功後開始執行的函式,

arg是這個函式的唯一乙個引數.表明傳遞給start_routine的引數.

pthrea

d_exit函式和exit函式類似用來退出執行緒.這個函式結束執行緒,釋放函式的資源,並在最後

阻塞,直到其他執行緒使用pthread_join函式等待它.然後將*retval的值傳遞給**thread_

return.由於這個函式釋放所以的函式資源,所以retval不能夠指向函式的區域性變數.

pt

hread_join和wait呼叫一樣用來等待指定的執行緒.

下面我們使用乙個例項來解釋一下使

用方法.在實踐中,我們經常要備份一些檔案.下面這個程式可以實現當前目錄下的所有文

件備份.備份後的字尾名為bak

#include #include #include #include #include #include #include #include #include #include #include #define buffer 512

struct copy_file ;

void *copy(void *arg)

}if(bytes_write==-1)break;

*bytes_copy_p+=bytes_read;}}

close(infile);

close(outfile);

pthread_exit(bytes_copy_p);

}int main(int argc,char **argv)

/* 給執行緒分配空間,其實沒有必要這麼多的 */

if(((thread=(pthread_t *)malloc(sizeof(pthread_t)*num))==null)||((file=(struct copy_file *)malloc(sizeof(struct copy_file)*num))==null))

for(i=0,j=0;id_name);

if(stat(filename,&filestat)==-1)

/* 我們忽略目錄 */

if(!s_isreg(filestat.st_mode))

continue;

if((file[j].infile=open(filename,o_rdonly))<0)

strcat(filename,".bak");

if((file[j].outfile=open(filename,o_wronly|o_creat,s_irusr|s_iwusr))<0)

/* 建立執行緒,進行檔案拷貝 */

if(pthread_create(&thread[j],null,copy,(void *)&file[j])!=0)

fprintf(stderr,"create thread[%d] error:%s/n/a",i,strerror(errno));

j++;

}byte_copy=0;

for(i=0;ipthread_clean_push

pthread_clean_pop

執行緒的介紹就到這裡了,關於執行緒的其他資料可以檢視下面這寫鏈結.

7 Linux程式設計入門 執行緒操作

前言 linux下執行緒的建立 介紹在linux下執行緒的建立和基本的使用.linux下的執行緒是乙個非常複雜的問題,由 於我對執行緒的學習不時很好,我在這裡只是簡單的介紹執行緒的建立和基本的使用,關於線 程的高階使用 如執行緒的屬性,執行緒的互斥,執行緒的同步等等問題 可以參考我後面給出的 資料....

學習日記7 Linux命令1

10 00 開始學習 1.編寫長python 時的換行 例 print hello world 輸出結果均為 hello worldprint hello world 括號內的各單位可以直接換行print hello world print hello world print hello world...

Linux 多執行緒程式設計入門

建立執行緒 intpthread create pthread t restrict thread,const pthread attr t restrict attr,void start routine void void restrict arg 引數 thread 輸出執行緒id attr ...