Skip to content

Commit

Permalink
Fixed get_curr_vm() for real real
Browse files Browse the repository at this point in the history
  • Loading branch information
didriklundberg committed Aug 6, 2015
1 parent 4ef6bbb commit 5dc5348
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/hypervisor/handlers.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ virtual_machine* get_curr_vm(){

//4. Return curr_vm, which is a pointer to the current machine on this
//particular core.
return &vms[temp_stack_pointer ^ curr_vm->id]; //TODO: Entirely cricket?
return &vms[temp_stack_pointer]; //TODO: Entirely cricket?
}

#define USE_DMMU
Expand Down

0 comments on commit 5dc5348

Please sign in to comment.