Do we have any sort of relationship between fork() and CreateThread? Is there anything that CreateThread internally calls fork()?
CreateThread - is for threads, fork - is for creating duplicate process. And there is no native way to have fork functionality for windows (at least through Win32 ).