• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            小默

            thread 多線程

            多線程

            編寫多線程程序時,在設計上要特別小心.
            對共享變量,多個執(zhí)行路徑,要引起足夠重視.

            創(chuàng)建多線程:
            /*
             * 多線程
             
            */
            #include 
            <stdio.h>
            #include 
            <unistd.h>
            #include 
            <stdlib.h>
            #include 
            <pthread.h>

            #define NUM_THREADS 6

            void *thread_function(void *arg);

            int main(){
                
            int res;
                pthread_t a_thread[NUM_THREADS];
                
            void *thread_result;
                
            int lots_of_threads;

                
            for(lots_of_threads = 0; lots_of_threads < NUM_THREADS; lots_of_threads++){
                    printf(
            "before pthread_create, lots_of_threads=%d\n",lots_of_threads);
                    res 
            = pthread_create(&(a_thread[lots_of_threads]),NULL,
                            thread_function, (
            void *)&lots_of_threads);
                    
            if(res != 0){
                        perror(
            "Thread creation failed");
                        exit(EXIT_FAILURE);
                    }
                }

                printf(
            "Waiting for threads to finish\n");

                
            for(lots_of_threads = NUM_THREADS - 1; lots_of_threads >= 0; lots_of_threads--){
                    res 
            = pthread_join(a_thread[lots_of_threads], &thread_result);
                    
            if(res == 0){
                        perror(
            "Picked up a thread\n");
                    }
                    
            else{
                        perror(
            "pthread_join failed\n");
                    }
                }

                printf(
            "All done\n");
                exit(EXIT_SUCCESS);
            }

            void *thread_function(void *arg){
                
            int my_number = *(int *)arg;
                
            int rand_num;

                printf(
            "thread_funcion is running. Argument was %d\n", my_number);
                rand_num 
            = 1+(int)(9.0*rand()/(RAND_MAX+1.0));
                sleep(rand_num);
                printf(
            "Bye from %d\n", my_number);
                pthread_exit(NULL);
            }

            執(zhí)行結(jié)果:
            [green@colorfulgreen ch11]$ gcc -D_REENTRANT thread8.c -o thread8 -lpthread
            [green@colorfulgreen ch11]$ .
            /thread8    
            before pthread_create, lots_of_threads
            =0
            before pthread_create, lots_of_threads
            =1
            before pthread_create, lots_of_threads
            =2
            before pthread_create, lots_of_threads
            =3
            before pthread_create, lots_of_threads
            =4
            before pthread_create, lots_of_threads
            =5
            Waiting 
            for threads to finish
            thread_funcion 
            is running. Argument was 5
            thread_funcion 
            is running. Argument was 5
            thread_funcion 
            is running. Argument was 5
            thread_funcion 
            is running. Argument was 5
            thread_funcion 
            is running. Argument was 5
            thread_funcion 
            is running. Argument was 5
            Bye from 
            5
            Bye from 
            5
            Picked up a thread
            : Success
            Bye from 
            5
            Picked up a thread
            : Success
            Bye from 
            5
            Picked up a thread
            : Success
            Bye from 
            5
            Picked up a thread
            : Success
            Bye from 
            5
            Picked up a thread
            : Success
            Picked up a thread
            : Success
            All done

            從執(zhí)行結(jié)果里,很顯然看到有bug,5個線程的argument全是5.
            因為新線程的參數(shù),是使用地址引用傳遞的:
            res = pthread_create(&(a_thread[lots_of_threads]),NULL,
                            thread_function, (void *)&lots_of_threads);
            主線程創(chuàng)建線程循環(huán),很快執(zhí)行完. 引用地址中的值,在子線程執(zhí)行前,已經(jīng)被改成了5.
            線程參數(shù)改成值傳遞就好了.

            --
            FROM:Linux程序設計

            posted on 2011-06-14 20:27 小默 閱讀(416) 評論(0)  編輯 收藏 引用 所屬分類: Linux

            導航

            統(tǒng)計

            留言簿(13)

            隨筆分類(287)

            隨筆檔案(289)

            漏洞

            搜索

            積分與排名

            最新評論

            閱讀排行榜

            久久人人爽人人爽人人AV| 国产香蕉97碰碰久久人人| 狠狠色丁香久久婷婷综合| 无码AV中文字幕久久专区| 久久婷婷激情综合色综合俺也去| 国产一区二区三区久久精品| 国产精品99久久久久久猫咪| 99久久香蕉国产线看观香| 国产精品久久久久天天影视| 四虎国产精品免费久久| 久久久久无码精品国产| 日本欧美国产精品第一页久久| 麻豆成人久久精品二区三区免费| 久久综合丁香激情久久| 久久精品国产日本波多野结衣 | 丰满少妇人妻久久久久久| 精品久久久久久无码人妻热| 久久人人添人人爽添人人片牛牛| 久久精品九九亚洲精品天堂| 少妇久久久久久久久久| 色狠狠久久综合网| 国产精品美女久久久久AV福利| 久久人妻少妇嫩草AV无码专区 | 久久精品视频免费| 囯产极品美女高潮无套久久久| 久久久99精品成人片中文字幕| 国产精品久久久久久久久免费| 最新久久免费视频| 久久久久99精品成人片牛牛影视| 精品久久无码中文字幕| 色综合久久中文字幕无码| 伊人久久大香线蕉综合网站| 久久久久无码中| 青青热久久国产久精品| 久久人妻少妇嫩草AV无码蜜桃| 久久久久99精品成人片三人毛片 | 久久国产色AV免费观看| 久久精品a亚洲国产v高清不卡| 久久综合给合久久狠狠狠97色 | 99久久国产综合精品网成人影院| 久久国产精品国产自线拍免费|