> Hello! > > In your GIT repository for core/stats.c > https://github.com/unbit/uwsgi/blob/b265ed83135b0e708b26be885dd8fadebf4e53cb/core/stats.c > > i see around line 443: > > if (nevents < 0) { > uwsgi_log_verbose("ending the stats pusher > thread...\n"); > return; > } > > > But in the released 1.9.19 I see: > > if (nevents < 0) { > if (errno == EINTR) continue; > uwsgi_log_verbose("ending the stats pusher > thread...\n") > ; > return; > } > > > (plus errno check). > > Why there is a difference between 1.9.19 and GIT? > > Thanks! >
you are seeing a previous commit, latest code has that "fix" (effectively is only useful during strace debugging) -- Roberto De Ioris http://unbit.it _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
