I just fix the problem

The problem is that I cannot use Thread twice, that's why I would need to use implements Runnable on my Philosopher's class. and then creates:
Code:
Philosopher p1 = new Philosopher(cs, cs, 1);
Philosopher p2 = new Philosohper(cs, cs, 2);
// and so on until p5
// and then...
Thread t1 = new Thread(p1);
t1.start();
Thread t2 = new Thread(p2);
t2.start();
// and so on.. up to 5
// it works pretty good!
// need to be tested over time now to see if there's bugs
Thanx all who supported me ccoonen (is that how you spell it?) this is from the top of my head, and the rest of PT teams.. thanx for this forum so that I can post my problems.. haha... I'll post the solution right after I turned in my homework, need some checks for now...
