struct process { int id; struct process * prev; struct process * next; } struct process * ready = NULL; struct process * running; int main() { struct proce