Home
last modified time | relevance | path

Searched refs:HostID (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DLockFileManager.cpp83 static std::error_code getHostID(SmallVectorImpl<char> &HostID) { in getHostID() argument
84 HostID.clear(); in getHostID()
96 HostID.append(UUIDRef.begin(), UUIDRef.end()); in getHostID()
104 HostID.append(HostNameRef.begin(), HostNameRef.end()); in getHostID()
108 HostID.append(Dummy.begin(), Dummy.end()); in getHostID()
114 bool LockFileManager::processStillExecuting(StringRef HostID, int PID) { in processStillExecuting() argument
121 if (StoredHostID == HostID && getsid(PID) == -1 && errno == ESRCH) in processStillExecuting()
192 SmallString<256> HostID; in LockFileManager() local
193 if (auto EC = getHostID(HostID)) { in LockFileManager()
199 Out << HostID << ' ' << sys::Process::getProcessId(); in LockFileManager()