MCPcopy Create free account
hub / github.com/QNapi/qnapi / QInterProcessChannel

Method QInterProcessChannel

gui/src/qcumber/qinterprocesschannel_win32.cpp:37–44  ·  view source on GitHub ↗

! \brief Constructor Check for a valid server and create one if none found. */

Source from the content-addressed store, hash-verified

35 Check for a valid server and create one if none found.
36*/
37QInterProcessChannel::QInterProcessChannel(QObject* p) : QThread(p) {
38 uniqPrefix = QApplication::applicationName();
39 pipeName =
40 QString("\\\\.\\pipe\\%1%2").arg(uniqPrefix).arg("_uniquePipeName");
41 globalMutexStr = uniqPrefix + QString("_globalMutexId");
42 blockerMutexStr = uniqPrefix + QString("_blockerMutexId");
43 init();
44}
45
46/*!
47 \brief Destructor

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected