Searched refs:local_errno (Results 1 – 2 of 2) sorted by relevance
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_posix_libcdep.cc | 387 int local_errno; in IsProcessRunning() local 388 if (internal_iserror(waitpid_status, &local_errno)) { in IsProcessRunning() 389 VReport(1, "Waiting on the process failed (errno %d).\n", local_errno); in IsProcessRunning() 398 int local_errno; in WaitForProcess() local 399 if (internal_iserror(waitpid_status, &local_errno)) { in WaitForProcess() 400 VReport(1, "Waiting on the process failed (errno %d).\n", local_errno); in WaitForProcess()
|
D | sanitizer_stoptheworld_linux_libcdep.cc | 414 int local_errno = 0; in StopTheWorld() local 415 if (internal_iserror(tracer_pid, &local_errno)) { in StopTheWorld() 416 VReport(1, "Failed spawning a tracer thread (errno %d).\n", local_errno); in StopTheWorld() 440 if (!internal_iserror(waitpid_status, &local_errno)) in StopTheWorld() 442 if (local_errno == EINTR) in StopTheWorld() 445 local_errno); in StopTheWorld()
|