测量linux上的exec() - ed进程所花费的时间

时间:2009-07-02 19:56:18

标签: c linux ipc

我正在使用times()函数来测量值,但我不确定我的方法是否正确。请查看和建议

struct tms tms_start, tms_end;
if (!(pid=fork()))
{
    //some necessary operations here
    times(&tms_start);
    execl(...);
}
else if (pid)
{
    //in parent
    int status;
    wait(&status);
    times(&tms_end);
    if (WIFEXITED(status))
    {
        if(WEXITSTATUS(status)==0)
        {
            clock_t real = tms_end.tms_cstime - tms_start.tms_stime
            float running_time = real/(double)sysconf(_SC_CLK_TK);
        }
    }
}

1 个答案:

答案 0 :(得分:5)

在致电times(&tms_start)之前,您需要致电fork()。在上面的代码中,tms_start变量在父级中未初始化,因为父级从不调用times(&tms_start)

struct tms tms_start, tms_end;
times(&tms_start);             // <-- here
if (!(pid=fork()))
{
    //some necessary operations here
    execl(...);
}
else if (pid)
{
    ...