Linux/함수1 함수의 실행 시간 구하기 1. struct timeval 사용 #include #include #include void getElapsedTime(struct timeval Tstart, struct timeval Tend) { Tend.tv_usec = Tend.tv_usec - Tstart.tv_usec; Tend.tv_sec = Tend.tv_sec - Tstart.tv_sec; printf("timeval sub sec : %ld, usec : %ld \n",Tend.tv_sec, Tend.tv_usec); Tend.tv_usec += (Tend.tv_sec*1000000); printf("Elapsed timeval Time: %lf sec\n",Tend.tv_usec / 1000000.0); } struct timev.. 2022. 4. 21. 이전 1 다음