https://bugs.winehq.org/show_bug.cgi?id=44812
Bug ID: 44812 Summary: MSYS2 applications need NtQueryInformationProcess 'ProcessQuotaLimits' class support Product: Wine Version: 3.4 Hardware: x86-64 OS: Linux Status: NEW Severity: normal Priority: P2 Component: ntdll Assignee: wine-bugs@winehq.org Reporter: focht@gmx.net Distribution: ---
Hello folks,
to track https://github.com/wine-staging/wine-staging/tree/master/patches/ntdll-Proce...
Unfortunately there is little information/details, I just found this:
https://wine-staging.com/news/2015-11-01-release-1.7.54.html
--- quote --- Implement stub for ProcessQuotaLimits info class (MSYS2, Wine Staging Bug #570) --- quote ---
Source:
https://source.winehq.org/git/wine.git/blob/HEAD:/dlls/ntdll/process.c#l196
--- snip --- 174 /****************************************************************************** 175 * NtQueryInformationProcess [NTDLL.@] 176 * ZwQueryInformationProcess [NTDLL.@] 177 * 178 */ 179 NTSTATUS WINAPI NtQueryInformationProcess( 180 IN HANDLE ProcessHandle, 181 IN PROCESSINFOCLASS ProcessInformationClass, 182 OUT PVOID ProcessInformation, 183 IN ULONG ProcessInformationLength, 184 OUT PULONG ReturnLength) 185 { 186 NTSTATUS ret = STATUS_SUCCESS; 187 ULONG len = 0; 188 189 TRACE("(%p,0x%08x,%p,0x%08x,%p)\n", 190 ProcessHandle,ProcessInformationClass, 191 ProcessInformation,ProcessInformationLength, 192 ReturnLength); 193 194 switch (ProcessInformationClass) 195 { 196 UNIMPLEMENTED_INFO_CLASS(ProcessQuotaLimits); ... --- snip ---
Regards