annotate scheduling.h @ 134:a9b72021f053

Distributed memory management w/o free requests working
author Merten Sach <msach@mailbox.tu-berlin.de>
date Fri, 16 Sep 2011 16:19:24 +0200
parents
children 0b49fd35afc1
rev   line source
msach@134 1 /*
msach@134 2 * File: scheduling.h
msach@134 3 * Author: msach
msach@134 4 *
msach@134 5 * Created on September 16, 2011, 2:28 PM
msach@134 6 */
msach@134 7
msach@134 8 #ifndef SCHEDULING_H
msach@134 9 #define SCHEDULING_H
msach@134 10
msach@134 11 #include "ProcrContext.h"
msach@134 12
msach@134 13 typedef struct _SchedSlot SchedSlot;
msach@134 14
msach@134 15 struct _SchedSlot
msach@134 16 {
msach@134 17 int workIsDone;
msach@134 18 int needsProcrAssigned;
msach@134 19 VirtProcr *procrAssignedToSlot;
msach@134 20 };
msach@134 21
msach@134 22 #endif /* SCHEDULING_H */
msach@134 23