Mercurial > cgi-bin > hgwebdir.cgi > VMS > VMS_Implementations > VMS_impls > VMS__MC_shared_impl
diff 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 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/scheduling.h Fri Sep 16 16:19:24 2011 +0200 1.3 @@ -0,0 +1,23 @@ 1.4 +/* 1.5 + * File: scheduling.h 1.6 + * Author: msach 1.7 + * 1.8 + * Created on September 16, 2011, 2:28 PM 1.9 + */ 1.10 + 1.11 +#ifndef SCHEDULING_H 1.12 +#define SCHEDULING_H 1.13 + 1.14 +#include "ProcrContext.h" 1.15 + 1.16 +typedef struct _SchedSlot SchedSlot; 1.17 + 1.18 +struct _SchedSlot 1.19 + { 1.20 + int workIsDone; 1.21 + int needsProcrAssigned; 1.22 + VirtProcr *procrAssignedToSlot; 1.23 + }; 1.24 + 1.25 +#endif /* SCHEDULING_H */ 1.26 +
