Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- #include <stdlib.h>
- #include <windows.h>
- #include <pthread.h>
- void * procesoSeparado(void * data){
- char * texto = (char *) data;
- while(1){
- printf("%s\n",texto);
- Sleep(1000);
- }
- }
- int main(){
- pthread_t proceso1;
- pthread_t proceso2;
- pthread_create(&proceso1 , NULL , &procesoSeparado, "hola");
- pthread_create(&proceso2, NULL, &procesoSeparado,"adios" );
- pthread_join(proceso1, NULL);
- pthread_join(proceso2 , NULL);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement