30-03-2022 - Processes - part 2, Threads - part 1 ----------------------------------------------------------------- Detailed program: * WIN32 CreateProcess, WaitForSingleObject, ExitProcess, GetExitCodeProcess * POSIX pthread_create, pthread_join, pthread_exit * WIN32 CreateThread, ExitThread, GetExitCodeThread +--------------------+------------------------------------------------------------------------------------+ |Slides: |:download:`02-processes.pdf ` | | |:download:`03-threads.pdf ` | +--------------------+------------------------------------------------------------------------------------+ |Code examples: |:download:`03-examples.zip ` | +--------------------+------------------------------------------------------------------------------------+ |Ex. solutions: |:download:`03-solutions.zip ` | +--------------------+------------------------------------------------------------------------------------+ Useful Links """""""""""" * `CreateProcessA `_ * `CreateProcessW `_ * `ExitProcess `_ * `GetExitCodeProcess `_ * `WaitForSingleObject `_ * `winerror.h `_ * `CreateThread `_ * `ExitThread `_ * `GetExitCodeThread `_ * `pthread_create `_ * `pthread_join `_ * `pthread_exit `_