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

Name

Description

f

The function to invoke.

args

The arguments forwarded to the function.

Created with MrDocs