Mercurial > cgi-bin > hgwebdir.cgi > VMS > VMS_Implementations > VMS_impls > VMS__MC_shared_impl
view scheduling.h @ 137:99343ffe1918
The shutdown now uses inter master requests
| author | Merten Sach <msach@mailbox.tu-berlin.de> |
|---|---|
| date | Mon, 19 Sep 2011 14:15:37 +0200 |
| parents | a9b72021f053 |
| children |
line source
1 /*
2 * File: scheduling.h
3 * Author: Merten Sachh
4 *
5 * Created on September 16, 2011, 2:28 PM
6 */
8 #ifndef SCHEDULING_H
9 #define SCHEDULING_H
11 #include "ProcrContext.h"
13 typedef struct _SchedSlot SchedSlot;
15 struct _SchedSlot
16 {
17 int workIsDone;
18 int needsProcrAssigned;
19 VirtProcr *procrAssignedToSlot;
20 };
22 #endif /* SCHEDULING_H */
