Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. pthread_t l_tid1, l_tid2;
  2.    
  3. int l_t1CreateStatus, l_t2CreateStatus;
  4.  
  5. l_t1CreateStatus = pthread_create(&l_tid1, NULL, thread_fn, (void *)thread_fn_arg);
  6. l_t2CreateStatus = pthread_create(&l_tid2, NULL, thread_fn, (void *)thread_fn_arg);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement