Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'thread'

1559016 - Cadu: thread software producer consumer
  1. #include <stdio.h>
  2. #include <pthread.h>
  3. #include <unistd.h>
  4.  
  5. #define LIMIT 10000
  6.  
  7. int buffer = 0;
  8. int max = 5;
  9.  
956259 - Thread: javascript thread matan lurey
  1. function Thread(run)
  2. {
  3.         this.run = run;
  4.        
  5.         // Similar to using Prototype's "bind" function
  6.         // i.e. start = this.start.bind(this);
  7.        
  8.         var start = this.start;
  9.  
worth-right