reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

examples/Kaleidoscope/BuildingAJIT/Chapter5/RemoteJITUtils.h
   40         if (ErrNo == EAGAIN || ErrNo == EINTR)
   58         if (ErrNo == EAGAIN || ErrNo == EINTR)
include/llvm/Support/Errno.h
   39   } while (Res == Fail && errno == EINTR);
lib/Support/Unix/Program.inc
  257     } while (Err == EINTR && ++retries < maxRetries);
  362   } while (WaitUntilTerminates && WaitResult.Pid == -1 && errno == EINTR);
  369       if (SecondsToWait && errno == EINTR) {
  385       } else if (errno != EINTR) {
lib/Support/raw_ostream.cpp
  723       if (errno == EINTR || errno == EAGAIN
projects/compiler-rt/lib/profile/InstrProfilingUtil.c
  136     if (errno != EINTR) {
  161     if (errno != EINTR) {
projects/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cpp
  463       if (local_errno == EINTR)
projects/compiler-rt/lib/xray/xray_utils.cpp
  141       if (errno == EINTR)
projects/compiler-rt/lib/xray/xray_x86_64.cpp
   39       if (errno == EINTR)
projects/openmp/runtime/src/z_Linux_util.cpp
 1540       if ((status != 0) && (status != EINTR) && (status != ETIMEDOUT)) {
tools/lldb/source/Core/IOHandler.cpp
  407         if (ferror(in) && errno == EINTR)
tools/lldb/source/Host/common/Host.cpp
  208       if (errno == EINTR)
tools/lldb/source/Host/common/MainLoop.cpp
  212       errno != EINTR)
tools/lldb/source/Host/common/Socket.cpp
   70   return errno == EINTR;
tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
  419     case EINTR:   // A read from a slow device was interrupted before any data
  508     case EINTR:
  605         case EINTR:  // A signal was delivered before the time limit
tools/lldb/source/Host/posix/PipePosix.cpp
  196       if (errno_copy != ENXIO && errno_copy != EINTR)
  279       } else if (errno == EINTR) {
  311       } else if (errno == EINTR) {
tools/lldb/source/Utility/SelectHelper.cpp
  219       if (error.GetError() == EINTR) {
tools/lldb/source/Utility/Status.cpp
  288   return (m_type == eErrorTypePOSIX && m_code == EINTR);
tools/lldb/tools/lldb-vscode/IOStream.cpp
   81       if (errno == EINTR || errno == EAGAIN)
  118       if (reason == EINTR || reason == EAGAIN)
tools/lli/RemoteJITUtils.h
   38         if (ErrNo == EAGAIN || ErrNo == EINTR)
   56         if (ErrNo == EAGAIN || ErrNo == EINTR)
unittests/Support/ErrnoTest.cpp
   25               errno = EINTR;
   36   errno = EINTR;
usr/include/c++/7.4.0/thread
  373 	while (::nanosleep(&__ts, &__ts) == -1 && errno == EINTR)
usr/include/x86_64-linux-gnu/c++/7.4.0/bits/error_constants.h
   77       interrupted = 				EINTR,
utils/benchmark/src/sleep.cc
   39   while (nanosleep(&sleep_time, &sleep_time) != 0 && errno == EINTR)
utils/unittest/googletest/src/gtest-death-test.cc
  333   } while (num_read == -1 && errno == EINTR);
  446   } while (bytes_read == -1 && errno == EINTR);