From: Andrew Cooper <andrew.cooper3@citrix.com>
To: Razvan Cojocaru <rzvncj@gmail.com>
Cc: "xen-devel@lists.xen.org" <xen-devel@lists.xen.org>
Subject: Re: Xen tools (libxs, xenstore) and C++
Date: Tue, 22 Jan 2013 15:26:20 +0000 [thread overview]
Message-ID: <50FEAF9C.609@citrix.com> (raw)
In-Reply-To: <50FEAD68.1000604@gmail.com>
On 22/01/13 15:16, Razvan Cojocaru wrote:
> Hello,
>
> I'd like to use xenctrl.h and a handful of other headers in a C++
> application. The headers I'm interested now are xenctrl.h,
> xen/hvm/save.h, xen/mem_event.h and xenstore.h. Unfortunately, they're
> not C++-friendly.
>
> Here's why:
>
> 1. None of the headers enclose their contents in:
>
> #ifdef __cplusplus
> extern "C" {
> #endif
>
> /* contents here */
>
> #ifdef __cplusplus
> }
> #endif
>
> 2. xen/arch-x86/hvm/save.h uses the C++ keyword 'new' as a parameter
> name (quite a few times).
>
> 3. C++ (being type-safer) frowns upon such assignments as:
>
> struct hvm_hw_cpu *newcpu=h; // h is void*
>
> which should be explicitly written as:
>
> struct hvm_hw_cpu *newcpu=(struct hvm_hw_cpu *)h;
>
> 4. xenctrl.h typedefs "enum xc_error_code xc_error_code;" _before_ "enum
> xc_error_code { /* ... */ }" has been defined, which C++ doesn't allow.
>
> I'm also getting:
>
> /usr/include/xen/mem_event.h:71:1: error: expected ‘;’ after union
> definition
> /usr/include/xen/mem_event.h:71:1: error: expected ‘:’ before ‘;’ token
>
> where the DEFINE_RING_TYPES(mem_event, mem_event_request_t,
> mem_event_response_t); macro is being expanded in mem_event.h.
>
> Are there plans to have the userspace libraries be friendlier to C++?
Patches welcome :)
I think C++ friendliness is a good idea (especially as I think I might
be needing C++ friendliness at some point in the not-too-distant future)
~Andrew
>
> Thanks,
> Razvan Cojocaru
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org
> http://lists.xen.org/xen-devel
next prev parent reply other threads:[~2013-01-22 15:26 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-22 15:16 Xen tools (libxs, xenstore) and C++ Razvan Cojocaru
2013-01-22 15:26 ` Andrew Cooper [this message]
2013-01-22 15:35 ` Razvan Cojocaru
2013-01-22 15:36 ` Razvan Cojocaru
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=50FEAF9C.609@citrix.com \
--to=andrew.cooper3@citrix.com \
--cc=rzvncj@gmail.com \
--cc=xen-devel@lists.xen.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.