Changeset 3355 in kBuild for trunk/src/kmk
- Timestamp:
- Jun 5, 2020 2:06:42 AM (5 years ago)
- Location:
- trunk/src/kmk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/kmkbuiltin/kSubmit.c
r3313 r3355 588 588 if (iProcessorGroup >= 0 && g_pfnSetThreadGroupAffinity) 589 589 { 590 GROUP_AFFINITY NewAff = { ~(uintptr_t)0, (WORD)iProcessorGroup, 0, 0, 0 };591 GROUP_AFFINITY OldAff = { 0, 0, 0, 0, 0 };590 GROUP_AFFINITY OldAff = { 0, 0, 0, 0, 0 }; 591 GROUP_AFFINITY NewAff = { 0 /* == all active apparently */, (WORD)iProcessorGroup, 0, 0, 0 }; 592 592 if (!g_pfnSetThreadGroupAffinity(ProcInfo.hThread, &NewAff, &OldAff)) 593 593 warnx(pCtx, "warning: Failed to set processor group to %d: %u\n", -
trunk/src/kmk/w32/winchildren.c
r3353 r3355 551 551 Info.BasicLimitInformation.LimitFlags &= ~JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE; 552 552 if (!SetInformationJobObject(hJob, JobObjectExtendedLimitInformation, &Info, sizeof(Info))) 553 OS N(message, 0, _("SetInformationJobObject(%s,JobObjectExtendedLimitInformation,{%s},) failed: %u"),554 pszJobName, win_job_object_mode, GetLastError());553 OSSN(message, 0, _("SetInformationJobObject(%s,JobObjectExtendedLimitInformation,{%s},) failed: %u"), 554 pszJobName, win_job_object_mode, GetLastError()); 555 555 } 556 556 else … … 1283 1283 if (g_cProcessorGroups > 1) 1284 1284 { 1285 GROUP_AFFINITY Affinity = { 0 , pWorker->iProcessorGroup, { 0, 0, 0 } };1285 GROUP_AFFINITY Affinity = { 0 /* == all active apparently */, pWorker->iProcessorGroup, { 0, 0, 0 } }; 1286 1286 fRet = g_pfnSetThreadGroupAffinity(ProcInfo.hThread, &Affinity, NULL); 1287 1287 assert(fRet); … … 2490 2490 if (g_cProcessorGroups > 1) 2491 2491 { 2492 GROUP_AFFINITY Affinity = { 0 /* == all active apparently */ 2492 GROUP_AFFINITY Affinity = { 0 /* == all active apparently */, pWorker->iProcessorGroup, { 0, 0, 0 } }; 2493 2493 BOOL fRet = g_pfnSetThreadGroupAffinity(GetCurrentThread(), &Affinity, NULL); 2494 2494 assert(fRet); (void)fRet;
Note:
See TracChangeset
for help on using the changeset viewer.