/* 
 * File:   scheduling.h
 * Author: Merten Sachh
 *
 * Created on September 16, 2011, 2:28 PM
 */

#ifndef SCHEDULING_H
#define	SCHEDULING_H

#include "ProcrContext.h"

typedef struct _SchedSlot SchedSlot;

struct _SchedSlot
 {
   int         workIsDone;
   int         needsProcrAssigned;
   VirtProcr  *procrAssignedToSlot;
 };
 
#endif	/* SCHEDULING_H */

