/* * CS460: Operating Systems * Jim Plank / Rich Wolski * dphil_1.c -- Dining philosophers solution #1 -- the null solution */ #include #include #include "dphil.h" void pickup(Phil_struct *ps) { return; } void putdown(Phil_struct *ps) { return; } void *initialize_v(int phil_count) { return NULL; }