001
26.04.2010, 18:46 Uhr
FloSoft
Medialer Over-Flow (Administrator)
|
WaitForSingleObject(ThreadHandles[p], INFINITE)
bzw entsprechend WaitForMultipleObjects (um auf alle threads zu warten)
und dann mit GetExitCodeThread(ThreadHandles[p], &dwexit) den jeweiligen exit-code (also deinen return-wert) abholen:
also pseudocode:
Code: |
handle = createthread waitforsingleobject(handle, infinite) getexitcodethread(handle, exitcode)
|
bzw
Code: |
for p in threadlist handles[p] = createthread
waitformultipleobjects(threadlist.size(), handles, waitforall, infinite)
for p in threadlist getexistcodethread(handles[p], exitcode[p])
|
-- class God : public ChuckNorris { }; Dieser Post wurde am 26.04.2010 um 18:46 Uhr von FloSoft editiert. |