diff scheduling.h @ 139:99798e4438a6

Merge of Malloc2 and inter master requests
author Merten Sach <msach@mailbox.tu-berlin.de>
date Mon, 19 Sep 2011 16:12:01 +0200
parents a9b72021f053
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/scheduling.h	Mon Sep 19 16:12:01 2011 +0200
     1.3 @@ -0,0 +1,23 @@
     1.4 +/* 
     1.5 + * File:   scheduling.h
     1.6 + * Author: Merten Sachh
     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 +