diff --git a/httplib.h b/httplib.h index c777991..2bdae5d 100644 --- a/httplib.h +++ b/httplib.h @@ -2951,7 +2951,10 @@ template inline ssize_t handle_EINTR(T fn) { ssize_t res = 0; while (true) { res = fn(); - if (res < 0 && errno == EINTR) { continue; } + if (res < 0 && errno == EINTR) { + std::this_thread::sleep_for(std::chrono::milliseconds{1}); + continue; + } break; } return res;