/* * CS460: Operating Systems * Jim Plank * dphil_1.c -- Dining philosophers solution #1 -- the null solution * January, 2009 */ #include #include "cbthread.h" #include "dphil.h" void i_am_hungry(Philosopher *p) { return; } void i_am_sated(Philosopher *p) { return; } void initialize_simulation(Simulation *s) { return; }