X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=blobdiff_plain;f=misc%2Fnetwork_servers%2Fv3_nbd%2Fv3_disk.cc;fp=misc%2Fnetwork_servers%2Fv3_nbd%2Fv3_disk.cc;h=f45fc66567a6d24ff819a0a2676904fd8b512b9f;hp=0000000000000000000000000000000000000000;hb=2693dbc32a15e21af5e648f6a3d98ecd962ac029;hpb=9a4af090e32278f088a3f9b444b1aa23e3b1f0d2 diff --git a/misc/network_servers/v3_nbd/v3_disk.cc b/misc/network_servers/v3_nbd/v3_disk.cc new file mode 100644 index 0000000..f45fc66 --- /dev/null +++ b/misc/network_servers/v3_nbd/v3_disk.cc @@ -0,0 +1,30 @@ +/* + * 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". + */ + +#include "v3_disk.h" + +v3_disk::v3_disk(string & filename) { + this->filename = filename; + this->locked = 0; +} + + +v3_disk::~v3_disk() { + +}