Go to the documentation of this file.
2 #include <TWebApplication>
3 #include <TAbstractController>
4 #include <TAbstractActionContext>
12 #define TF_EINTR_LOOP(func) \
17 } while (ret < 0 && errno == EINTR); \
20 #define TF_EAGAIN_LOOP(func) \
25 } while (ret < 0 && (errno == EINTR || errno == EAGAIN)); \