MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / isProcRunning

Function isProcRunning

gui/qt/utils.cpp:207–213  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

205#endif
206
207bool isProcRunning(pid_t procID) {
208#ifdef Q_OS_WIN
209 return checkProc(static_cast<DWORD>(procID));
210#else
211 return checkProc(procID);
212#endif
213}
214
215QString randomString(const int length) {
216 const QString possibleCharacters(QStringLiteral("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"));

Callers 2

foreachFunction · 0.85
ipcSetupMethod · 0.85

Calls 1

checkProcFunction · 0.85

Tested by

no test coverage detected