Skip to content
Snippets Groups Projects
Commit c814bf95 authored by ye xingchen's avatar ye xingchen Committed by Michael Ellerman
Browse files

powerpc/selftests: Use timersub() for gettimeofday()

parent 1c23f9e6
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,7 @@ static int test_gettimeofday(void) ...@@ -12,7 +12,7 @@ static int test_gettimeofday(void)
{ {
int i; int i;
struct timeval tv_start, tv_end; struct timeval tv_start, tv_end, tv_diff;
gettimeofday(&tv_start, NULL); gettimeofday(&tv_start, NULL);
...@@ -20,7 +20,9 @@ static int test_gettimeofday(void) ...@@ -20,7 +20,9 @@ static int test_gettimeofday(void)
gettimeofday(&tv_end, NULL); gettimeofday(&tv_end, NULL);
} }
printf("time = %.6f\n", tv_end.tv_sec - tv_start.tv_sec + (tv_end.tv_usec - tv_start.tv_usec) * 1e-6); timersub(&tv_start, &tv_end, &tv_diff);
printf("time = %.6f\n", tv_diff.tv_sec + (tv_diff.tv_usec) * 1e-6);
return 0; return 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment