folly::fileutil_detail::wrapNoInt

Wrap call to f(args) in loop to retry on EINTR.

Synopsis

Declared in <folly/detail/FileUtilDetail.h>

template<
    class F,
    class... Args,
    class R = std::invoke_result_t<F&, Args&...>>
R
wrapNoInt(
    F f,
    Args... args);

Return Value

The result of the last invocation of the function.

Parameters

NameDescription
fThe function to invoke.
argsThe arguments forwarded to the function.