[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 07/21] qapi: generate qapi_free_* functions for *Lis
From: |
Luiz Capitulino |
Subject: |
[Qemu-devel] [PATCH 07/21] qapi: generate qapi_free_* functions for *List types |
Date: |
Wed, 28 Sep 2011 11:44:31 -0300 |
From: Michael Roth <address@hidden>
Signed-off-by: Michael Roth <address@hidden>
Signed-off-by: Luiz Capitulino <address@hidden>
---
scripts/qapi-types.py | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/scripts/qapi-types.py b/scripts/qapi-types.py
index fc0f7af..4797a70 100644
--- a/scripts/qapi-types.py
+++ b/scripts/qapi-types.py
@@ -254,6 +254,8 @@ for expr in exprs:
ret = "\n"
if expr.has_key('type'):
ret += generate_struct(expr['type'], "", expr['data']) + "\n"
+ ret += generate_type_cleanup_decl(expr['type'] + "List")
+ fdef.write(generate_type_cleanup(expr['type'] + "List") + "\n")
ret += generate_type_cleanup_decl(expr['type'])
fdef.write(generate_type_cleanup(expr['type']) + "\n")
elif expr.has_key('union'):
--
1.7.7.rc0.72.g4b5ea
- [Qemu-devel] [PATCH v1 00/21]: First round of QAPI conversions, Luiz Capitulino, 2011/09/28
- [Qemu-devel] [PATCH 02/21] qerror: add qerror_report_err(), Luiz Capitulino, 2011/09/28
- [Qemu-devel] [PATCH 03/21] qapi: add code generation support for middle mode, Luiz Capitulino, 2011/09/28
- [Qemu-devel] [PATCH 04/21] qapi: use middle mode in QMP server, Luiz Capitulino, 2011/09/28
- [Qemu-devel] [PATCH 01/21] error: let error_is_type take a NULL error, Luiz Capitulino, 2011/09/28
- [Qemu-devel] [PATCH 07/21] qapi: generate qapi_free_* functions for *List types,
Luiz Capitulino <=
- [Qemu-devel] [PATCH 05/21] qapi: fixup command generation for functions that return list types, Luiz Capitulino, 2011/09/28
- [Qemu-devel] [PATCH 08/21] qapi: add test cases for generated free functions, Luiz Capitulino, 2011/09/28
- [Qemu-devel] [PATCH 09/21] qapi: dealloc visitor, support freeing of nested lists, Luiz Capitulino, 2011/09/28
- [Qemu-devel] [PATCH 11/21] qapi: convert query-name, Luiz Capitulino, 2011/09/28
- [Qemu-devel] [PATCH 12/21] qapi: Convert query-version, Luiz Capitulino, 2011/09/28