Wrap call to f(args) in loop to retry on EINTR.
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);
The result of the last invocation of the function.
| Name | Description |
|---|---|
| f | The function to invoke. |
| args | The arguments forwarded to the function. |