[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] libxl: idl: Provide struct and union tags
# HG changeset patch # User Ian Jackson <ian.jackson@xxxxxxxxxxxxx> # Date 1323712119 0 # Node ID af0b77d8b1c386ced51689bea253dc6014f0eea5 # Parent b4365e2c25958162500c37e01eb06da4d0df5427 libxl: idl: Provide struct and union tags Instead of generating: typedef struct { ... } libxl_foo; Produce: typedef struct libxl_foo { ... } libxl_foo; This makes it possible to refer to libxl idl-generated structs and unions, as incomplete types, before they have been defined. Signed-off-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Committed-by: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> --- diff -r b4365e2c2595 -r af0b77d8b1c3 tools/libxl/gentypes.py --- a/tools/libxl/gentypes.py Mon Dec 12 17:48:38 2011 +0000 +++ b/tools/libxl/gentypes.py Mon Dec 12 17:48:39 2011 +0000 @@ -56,7 +56,7 @@ if ty.typename is None: s += "%s {\n" % ty.kind else: - s += "typedef %s {\n" % ty.kind + s += "typedef %s %s {\n" % (ty.kind, ty.typename) for f in ty.fields: if f.comment is not None: _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |