【发布时间】:2013-08-29 15:24:58
【问题描述】:
我需要测量代码的互斥体进入和结束的时间,所以我写了这个:
#include<stdio.h>
#include<string.h>
#include<pthread.h>
#include<stdlib.h>
#include<unistd.h>
#include<time.h>
pthread_t tid[4];
int counter;
pthread_mutex_t lock;
void* doSomeThing(void *arg)
{
pthread_mutex_lock(&lock);
time_t stime=time(NULL);
unsigned long i = 0;
counter += 1;
printf("\n Job %d started\n", counter);
for(i=0; i<(0xFFFF);i++){
// printf("%d", i); //this is just wait
}
printf("\n Job %d finished\n", counter);
time_t etime=time(NULL);
printf("time : %ld\n", difftime(etime, stime));
pthread_mutex_unlock(&lock);
return NULL;
}
int main(void)
{
int i = 0;
int err;
if (pthread_mutex_init(&lock, NULL) != 0)
{
printf("\n mutex init failed\n");
return 1;
}
while(i < 4)
{
err = pthread_create(&(tid[i]), NULL, &doSomeThing, NULL);
if (err != 0)
printf("\ncan't create thread :[%s]", strerror(err));
i++;
}
pthread_join(tid[0], NULL);
pthread_join(tid[1], NULL);
pthread_join(tid[2], NULL);
pthread_join(tid[3], NULL);
pthread_mutex_destroy(&lock);
return 0;
}
但我得到的时间是0
【问题讨论】:
-
由于
difftime返回一个double,printf 应该是:printf("time : %lf\n", difftime(etime, stime)); -
根据您优化代码的程度,
0可能是您的计时器分辨率的正确答案。 -
那可能是因为你的代码运行的太快了,没有可测量的时间差。尝试在你的 for 循环中做一些耗时的事情——例如复杂的数学。
-
@Trenin 或
sleep(10)? -
或者,使用更小的时间粒度。
标签: c++ c multithreading time mutex