Skip to content

Instantly share code, notes, and snippets.

View ssuarez6's full-sized avatar

Santiago Suárez ssuarez6

  • S4N
  • Medellín, Colombia
View GitHub Profile

Keybase proof

I hereby claim:

  • I am ssuarez6 on github.
  • I am sansp (https://keybase.io/sansp) on keybase.
  • I have a public key ASDwsLkrx4hYMJJSBaIpSILG5CJ3RF92GekGjY-BBwD6jAo

To claim this, I am signing this object:

public class ProducerConsumer{
static final int N = 100; //buffer size
static producer p = new producer();
static consumer c = new consumer();
static monitor m = new monitor();
public static void main(String args[]){
p.start();
c.start();
}