qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 02/20] add hierarchical bitmap data type and tes


From: Stefan Hajnoczi
Subject: Re: [Qemu-devel] [PATCH 02/20] add hierarchical bitmap data type and test cases
Date: Fri, 11 Jan 2013 19:27:01 +0100
User-agent: Mutt/1.5.21 (2010-09-15)

On Wed, Dec 12, 2012 at 02:46:21PM +0100, Paolo Bonzini wrote:
> diff --git a/hbitmap.c b/hbitmap.c
> new file mode 100644
> index 0000000..ae59f39
> --- /dev/null
> +++ b/hbitmap.c
> @@ -0,0 +1,400 @@
> +/*
> + * Hierarchical Bitmap Data Type
> + *
> + * Copyright Red Hat, Inc., 2012
> + *
> + * Author: Paolo Bonzini <address@hidden>
> + *
> + * This work is licensed under the terms of the GNU GPL, version 2 or
> + * later.  See the COPYING file in the top-level directory.
> + */
> +
> +#include "osdep.h"
> +#include "hbitmap.h"
> +#include "host-utils.h"
> +#include "trace.h"
> +#include <string.h>
> +#include <glib.h>
> +#include <assert.h>

System headers before application headers, please.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]