aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/yt/system/handle_eintr.h
blob: 4821c21a26a97925752f13a531fe861654d58972 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

namespace NYT {

////////////////////////////////////////////////////////////////////////////////

template <class F,  class... Args>
auto HandleEintr(F f, Args&&... args) -> decltype(f(args...));

////////////////////////////////////////////////////////////////////////////////

} // namespace NYT

#define HANDLE_EINTR_INL_H_
#include "handle_eintr-inl.h"
#undef HANDLE_EINTR_INL_H_