X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Finclude%2Fpalacios%2Fvmm_queue.h;h=a4994f5a2f595b154f2e1f3b67f847be1d0002ac;hb=5bf6d0c260240e314876a2fca8e3fd56bd6a1029;hp=f66d06c6b4fcff33146f74a6b997bcf97d278599;hpb=101529b6eae500272347287df43ec51aa003d0aa;p=palacios.git diff --git a/palacios/include/palacios/vmm_queue.h b/palacios/include/palacios/vmm_queue.h index f66d06c..a4994f5 100644 --- a/palacios/include/palacios/vmm_queue.h +++ b/palacios/include/palacios/vmm_queue.h @@ -1,5 +1,22 @@ -/* (c) 2008, Jack Lange */ -/* (c) 2008, The V3VEE Project */ +/* + * This file is part of the Palacios Virtual Machine Monitor developed + * by the V3VEE Project with funding from the United States National + * Science Foundation and the Department of Energy. + * + * The V3VEE Project is a joint project between Northwestern University + * and the University of New Mexico. You can find out more at + * http://www.v3vee.org + * + * Copyright (c) 2008, Jack Lange + * Copyright (c) 2008, The V3VEE Project + * All rights reserved. + * + * Author: Jack Lange + * + * This is free software. You are permitted to use, + * redistribute, and modify it as specified in the file "V3VEE_LICENSE". + */ + #ifndef __VMM_QUEUE_H__ #define __VMM_QUEUE_H__ @@ -18,17 +35,17 @@ struct queue_entry { - addr_t entry; - struct list_head entry_list; + addr_t entry; + struct list_head entry_list; }; struct gen_queue { - uint_t num_entries; - struct list_head entries; + uint_t num_entries; + struct list_head entries; - // We really need to implement this.... - // void * lock; + // We really need to implement this.... + // void * lock; };