Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


VM configuration attempts to roll back on failure
[palacios.git] / palacios / include / palacios / vmm_scheduler.h
index efe47fa..61539ce 100644 (file)
@@ -7,8 +7,9 @@
  * and the University of New Mexico.  You can find out more at 
  * http://www.v3vee.org
  *
- * Copyright (c) 2008, Jack Lange <jarusl@cs.northwestern.edu> 
- * Copyright (c) 2008, The V3VEE Project <http://www.v3vee.org> 
+ * Copyright (c) 2013, Oscar Mondragon <omondrag@cs.unm.edu>
+ * Copyright (c) 2013, Patrick G. Bridges <bridges@cs.unm.edu>
+ * Copyright (c) 2013, The V3VEE Project <http://www.v3vee.org> 
  * All rights reserved.
  *
  * Author: Oscar Mondragon <omondrag@cs.unm.edu>
@@ -36,16 +37,6 @@ struct vm_scheduler_impl {
        int (*dvfs)(struct v3_vm_info *vm);
 };
 
-struct vm_sched_state {
-       struct vm_scheduler *sched;
-       void *priv_data;
-};
-
-struct vm_core_sched_state {
-       struct vm_scheduler *sched;
-       void *priv_data;
-};
-
 void v3_schedule(struct guest_info *core);
 void v3_yield(struct guest_info *core, int usec);