comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:a1ba351c4b2a
1 /*
2 * File: scheduling.h
3 * Author: msach
4 *
5 * Created on September 16, 2011, 2:28 PM
6 */
7
8 #ifndef SCHEDULING_H
9 #define SCHEDULING_H
10
11 #include "ProcrContext.h"
12
13 typedef struct _SchedSlot SchedSlot;
14
15 struct _SchedSlot
16 {
17 int workIsDone;
18 int needsProcrAssigned;
19 VirtProcr *procrAssignedToSlot;
20 };
21
22 #endif /* SCHEDULING_H */
23