Jump to content
Fórum Script Brasil
  • 0

Threads - de linux para windows 1


Misael

Question

Boa noite,

preciso urgentemente de ajuda!!

Tenho 3 exercicios de threds... em c++, so que rodam apenas em linux.

Preciso mudar para que funcionem no windows... mas não sei como faço.

Segue um deles:

- Escreva uma aplicação que gere 10 threads. Cada thread terá o mesmo comportamento: ao executar deve exibir a mensagem: "Sou a thread X... viverei enquanto meu mestre desejar". Este programa só pode terminar quando todas as threads exibirem essa mensagem.

Código:

#include <pthread.h>

#include <stdio.h>

#include <stdlib.h>

void *thread(void* N){

int i = (int)N;

printf("sou a thread %d ,vivo enquanto meu mestre mandar\n", (i+1));

};

main(int argc, char *argv[]){

pthread_t tid[10];

int i;

for(i = 0;i<10;i++){

pthread_create(&tid,NULL,thread,(void *) i);

}

for(i = 0;i<10;i++){

printf("joint %d thread\n", (i+1));

pthread_join(tid, NULL);

}

}

Por favor, preciso mudar para windows.

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...