| 1938 | } |
| 1939 | |
| 1940 | void |
| 1941 | UDPNetHandler::signalActivity() |
| 1942 | { |
| 1943 | #if HAVE_EVENTFD |
| 1944 | uint64_t counter = 1; |
| 1945 | ATS_UNUSED_RETURN(write(thread->evfd, &counter, sizeof(uint64_t))); |
| 1946 | #else |
| 1947 | char dummy = 1; |
| 1948 | ATS_UNUSED_RETURN(write(thread->evpipe[1], &dummy, 1)); |
| 1949 | #endif |
| 1950 | } |
no test coverage detected