Advertisement
alexarcan

Untitled

Dec 9th, 2015
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <pthread.h>
  4. char retval;
  5.  
  6. void *thread_code(void *arg)
  7. {
  8. int i;
  9. char c= *(char *)arg;
  10.  
  11. for(i=0; i<1000; i++)
  12. printf("%c",*((char *)arg));
  13.  
  14. printf("\n");
  15. retval = c-('A'+1);
  16. return (void *) (&retval);
  17. }
  18.  
  19. int main(int argc, char *argv[])
  20. {
  21. pthread_t th1, th2;
  22. void *ret1, *ret2;
  23.  
  24. pthread_create( &th1, NULL, thread_code, (void*) 'A');
  25. pthread_create( &th2, NULL, thread_code, (void*) 'B');
  26.  
  27. printf("Threads created.\n");
  28.  
  29. pthread_join(th1, &ret1);
  30. pthread_join(th2, &ret2);
  31.  
  32. printf("Thread 1 ends returning: %d.\n", (void *)&ret1);
  33. printf("Thread 2 ends returning: %d.\n", (void *)&ret2);
  34. exit(0);
  35.  
  36. return 0;
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement