Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. bool quit = false;
  2.  
  3. playbackThread() {
  4.     while(!quit) {
  5.         blocking_read_from_device_function();
  6.     }
  7. }
  8.  
  9. stopStream() {
  10.     quit = true;
  11.     pj_thread_join(pb_thread); //wait for thread
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement