| 112 | void Process::setpgid() |
| 113 | #else |
| 114 | void Process::setupChildProcess() |
| 115 | #endif |
| 116 | { |
| 117 | #ifndef Q_OS_WIN |
| 118 | if (::setpgid(0,0)) { |
| 119 | std::cerr << "Error: Failed to create sub-process\n"; |
| 120 | } |
| 121 | #endif |
| 122 | } |
| 123 | |
| 124 | #ifdef Q_OS_WIN |
| 125 | void Process::attachJob() |
nothing calls this directly
no outgoing calls
no test coverage detected