timeval end_time;
timeval Dbg_timer;
The above time structures where initialized with gettimeofday()
at some point.
Below is how I calculated the time difference:
long int elaspsed_time_s = end_time.tv_sec - Dbg_timer.tv_sec;
printf("elaspsed_time_s =%d -> end_time_tv_sec=%d Dbg_timer_tv_sec=%d \n",
elaspsed_time_s, end_time.tv_sec, Dbg_timer.tv_sec);
The Output:
elaspsed_time_s =3 -> end_time_tv_sec=1631446699 Dbg_timer_tv_sec=1631446699
How is the above possible? What is really going on?
%d
is not a proper conversion to use for thelong int
valueelaspsed_time_s
. (By the way, the correct spelling is “elapsed”.) Use%ld
forelaspsed_time_s
.%d
is also not a proper conversion to use for thetime_t
values in thetv_sec
member. On POSIX systems,time_t
is an integer type, but it is not necessarily anint
, as far as I know. To print atime_t
value, you might convert it to along int
and print it with%ld
:Alternatively, you could include
<stdint.h>
and<inttypes.h>
and print it viauintmax_t
: