Aparece el mensaje de error anterior (que busqué en Google y encontré que tiene algo que ver con una llave que falta o algo así), sin embargo, ¿no puedo ver dónde está este corchete faltante?error fatal C1004: inesperado al final del archivo encontrado
#include "stdafx.h"
#include <Windows.h>
#include <iostream>
using namespace std;
class Something{
static DWORD WINAPI thread_func(LPVOID lpParameter)
{
thread_data *td = (thread_data*)lpParameter;
cout << "thread with id = " << td->m_id << endl;
return 0;
}
int main()
{
for (int i=0; i< 10; i++)
{
CreateThread(NULL, 0, thread_func, new thread_data(i) , 0, 0);
}
int a;
cin >> a;
}
struct thread_data
{
int m_id;
thread_data(int id) : m_id(id) {}
};
}
Simplemente curioso, ¿por qué 'main' se envuelve en una clase? – Mahesh
Tengo el ejemplo de aquí: http://stackoverflow.com/questions/4768294/multithreading-in-c – mezamorphic
¿Pensé que tenía que ser envuelto en una clase? – mezamorphic