Hello!
On Sat, Nov 25, 2017 at 07:44:54PM -0500, teknopaul wrote:
> I'm trying to compile nginx on for a raspberry pi
>
> src/core/ngx_times.c
>
> time_t sec;
> ngx_uint_t msec;
> struct timeval tv;
>
> ngx_gettimeofday(&tv);
> sec = tv.tv_sec;
> msec
I'm trying to compile nginx on for a raspberry pi
src/core/ngx_times.c
time_t sec;
ngx_uint_t msec;
struct timeval tv;
ngx_gettimeofday(&tv);
sec = tv.tv_sec;
msec = tv.tv_usec / 1000;
ngx_current_msec = (ngx_msec_t) sec * 1000 + msec;
ngx_current_m