多進程多線程測試代碼

#include <unistd.h>
#include <stdio.h>
#include <pthread.h>
#include <stdlib.h>

/*cpu個數,肯定進程數*/
#define cpunum 2

/*調試開關*/
#define debug 0

/*多個線程調用該函數*/
void *thrd_fun(void *data);

struct THRD{
    pid_t ppid;
} thrddata;

/*多個進程調用該函數*/
int callFuncation(int number);

void main()
{
    pid_t pid;
    int i;
    
    /*根據定義的cpu個數肯定fork進程數目*/
    for(i=0;i<cpunum;i++)
    {
        pid=fork();
        if(pid==0)
        {
            /*子進程調用函數*/
            callFuncation(i);
            exit(-1);
        }
        else if(pid < 0)
        {
            fprintf(stdout,"fork error!\n");
            exit(-1);
        }
    }
    wait(NULL);
    fprintf(stdout,"pid = [%d]\n",getpid());
    exit(0);
}

int callFuncation(int number)
{
    int thread_num=0;

    /*定義最大線程數*/
    pthread_t thread[16];
    fprintf(stdout,"fork number [%d] ppid = [%d]\n",number,getpid());
    thrddata.ppid=getpid();
    void *tret;
    for(thread_num=0;thread_num<5;thread_num++)
    {
        /*多個線程調用函數接口*/
        if(pthread_create(&thread[thread_num],NULL,thrd_fun,(void *)&thrddata) !=0)
        {
            fprintf(stdout,"thread create error!\n");
            return -1;
        }

        /*合併線程,確保所有線程執行完後,銷燬線程,返回主函數*/
        if (pthread_join(thread[thread_num],&tret)!=0) 
        {
            fprintf(stdout, "Join thread %d error!\n",thread_num);
            return (-1);
        }
        else if(debug)fprintf(stdout, "Join thread %d success!\n",thread_num);
    }
}

/*線程函數*/
void *thrd_fun(void *data)
{
    struct THRD *thdata;
    thdata=(struct THRD *)data;
    fprintf(stdout,"thd_data is [%d]!\n",thdata->ppid);
    pthread_exit(NULL);
}

代碼是N個月前寫的,今天加的註釋,若是有任何不妥之處,望不吝指出。
函數

相關文章
相關標籤/搜索