I have a small question about threading in Windows. I have the following code :

main.cpp

int     main(int ac, char **av)
{
  std::vector<Mthread *>    mythread;
  std::list<std::string>    stack;
  DWORD     id = 0;

  stack.push_back("Maison");
  stack.push_back("Femmes");
  stack.push_back("Fetes");
  stack.push_back("Voitures");
  stack.push_back("Nounours");
  while (id != 5)
  {
      mythread.push_back(new Mthread());
      mythread[mythread.size() - 1]->initThread(&stack, id);
      id++;
  }
  id = 0;
  while (id != 5)
  {
      WaitForInputIdle(mythread[id]->getThread(), INFINITE);
      id++;
  }
  return (1);
}

and Mthread.cpp who is creating my Mthread class.

Mthread::Mthread() {}

Mthread::~Mthread() {}

HANDLE      Mthread::getThread(void) const
{
    return (this->thread);
}

bool        Mthread::initThread(std::list<std::string> *list, DWORD ID)
{
    this->save = list;
    this->thread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)Mthread::ThreadFunc, (LPVOID)list, 0, &ID);
    if (this->thread == NULL)
    {
        std::cout << "Erreur lors du lancement du thread" << std::endl;
        return (false);
    }
    else
    {
        return (true);
    }
}

void        Mthread::ThreadFunc(LPVOID list)
{
        std::cout << " is launch" << std::endl;
}

The code is working, but I have a small problem : no string is written on the terminal. But, if I change my code to :

bool        Mthread::initThread(std::list<std::string> *list, DWORD ID)
{
    this->save = list;
    this->thread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)Mthread::ThreadFunc, (LPVOID)list, 0, &ID);
    if (this->thread == NULL)
    {
        std::cout << "Erreur lors du lancement du thread" << std::endl;
        return (false);
    }
    else
    {
        std::cout << "OK" << std::endl;
        return (true);
    }
}

Well "OK" and "is launch" is written 5 times on the terminal. I don't understand why. When I pass a small string a to cout it seems to be working, but when I don't nothing is written.

link|improve this question

What did you expect to happen? What is the purpose of your std::list/stack? What do you mean by "a small writting on cout"? – wolfgang Dec 5 '11 at 15:47
well, after i added Sleep(4);, only one is launch is writting instead of 5. Do you know a function who is waiting to the end execution of a thread ? – Yumino Dec 5 '11 at 15:49
feedback

2 Answers

up vote 1 down vote accepted

Before terminating, your program should wait until the threads have finished their job. On windows, take a look at WaitForMultipleObjects.

link|improve this answer
ok thanks, i will try with this function – Yumino Dec 5 '11 at 16:00
yeah it works fine ! Thanks for this :) – Yumino Dec 5 '11 at 16:03
feedback

short answer: I guess your main() terminates before the threads have a chance to run. add a sleep() or something similar to main.

More complex answer: - threads and main run independently from eachother. You have to wait in your main until you know you can exit main. - your program tends to be unsafe since the vector is accessed by all threads without any synchronisation. Read up on locks, mutexes and semaphores!

link|improve this answer
yeah i know for the vector. i will lock this after i fixed my problem because i need to work with it. I update my questions. i add WaitForInputIdle on my main. but it always not works... – Yumino Dec 5 '11 at 15:56
yeah it works fine ! Thanks for this :) – Yumino Dec 5 '11 at 16:04
1  
Do not use WaitForInputIdle. See Shawnone's answer for the correct family of function(s) to use. – Logan Capaldo Dec 5 '11 at 16:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.