pthread执行时间?怎么算?

时间:2011-09-10 08:31:40

标签: c linux pthreads

在我的应用程序中,我需要计算每个线程的执行时间[字面上从启动pthread及其执行终止所花费的时间]。终止可以是'pthread_exit'类型或显式取消。在下面的代码中,我使用了pthread specfic数据来保留每个线程的开始时间,因此我可以找到总时间。你们认为以下方法有意义吗?如果没有,输入真的很感激!!!出于测试目的,线程在一段时间的睡眠后自行取消。

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

typedef struct _pTime
{
    time_t stime;
}pTime;

pthread_key_t kstime;

void   cancelRoutine (void * arg)
{
    pTime etime, *btime;
    time (&(etime.stime));
    printf (" Inside cancelRoutine ...tid: %l \n", pthread_self());
    btime = (pTime *) pthread_getspecific (kstime);
    printf ("Time taken :  %lf ", difftime (etime.stime, btime->stime));
}

void * tfunction ( void * arg)
{
    int waitTime = (int) arg;
    printf ("\n Wait Time is %ud ", waitTime);
    pTime  *start;
    start = (pTime *) malloc (sizeof (pTime));
    time (&(start->stime));

    pthread_setspecific (kstime, start);
    pthread_cleanup_push (cancelRoutine, NULL);
    printf (" Invoking the  thread \n");
    /* Doing Certain Work here */
    sleep (waitTime);
    pthread_cancel ( pthread_self());
    sleep(waitTime);
    pthread_cleanup_pop (NULL);
}

int main ( int argc, char **argv)
{
    pthread_t tid[2];
    int toBeSpend=10, i;
    pthread_key_create(&kstime, NULL);

    for (i=0; i<2; i++)
        pthread_create (&tid[i], NULL, tfunction, (void *)(toBeSpend*(i+1)));
    sleep (3);
    for(i=0; i<2; i++)
        pthread_join (tid[i], NULL);
}

1 个答案:

答案 0 :(得分:0)

对我来说似乎没问题(虽然我不喜欢特定的线程变量,但我更喜欢使用线程信号处理程序来捕获“取消”,尽管你的代码看起来有点漂亮)

您应该改进的一件事是调用time (&(start->stime));

这应该是线程函数应该执行的第一件事(首先在本地var上,然后将它复制到malloc'ed pTime),因为你之前调用了系统调用(花了很多时间,相对论,也可以阻止)。

另外,您可能希望使用分析工具,例如gprof。