ThreadFunc () вызывается здесь два раза? иногда я замечаю один звонок, а иногда совсем нет.
#include <windows.h>
#include <stdio.h>
DWORD WINAPI ThreadFunc(LPVOID);
int main()
{
HANDLE hThread;
DWORD threadld;
hThread = CreateThread(NULL, 0, ThreadFunc, 0, 0, &threadld );
printf("Thread is running\n");
}
DWORD WINAPI ThreadFunc(LPVOID p)
{
printf("In ThreadFunc\n");
return 0;
}
Выход 1
Thread is running
In ThreadFunc
In ThreadFunc
Press any key to continue . . .
Выход 2
Thread is running
In ThreadFunc
Press any key to continue . . .
Выход 3
Thread is running
Press any key to continue . . .