| 116 | } |
| 117 | |
| 118 | void w_SetInformationJobObject(HANDLE hJob, JOBOBJECTINFOCLASS JobObjectInformationClass, LPVOID lpJobObjectInformation, DWORD cbJobObjectInformationLength) |
| 119 | { |
| 120 | RAISE_IF_FALSE( |
| 121 | "SetInformationJobObject", |
| 122 | SetInformationJobObject( |
| 123 | hJob, |
| 124 | JobObjectInformationClass, |
| 125 | lpJobObjectInformation, |
| 126 | cbJobObjectInformationLength) |
| 127 | ); |
| 128 | |
| 129 | } |
| 130 | |
| 131 | void w_AssignProcessToJobObject(HANDLE hJob, HANDLE hProcess) |
| 132 | { |
no test coverage detected