[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 04/12] qapi: add "unix" to the set of reserved words
From: |
Paolo Bonzini |
Subject: |
[Qemu-devel] [PATCH 04/12] qapi: add "unix" to the set of reserved words |
Date: |
Wed, 19 Sep 2012 16:31:07 +0200 |
It is #defined to 1.
Signed-off-by: Paolo Bonzini <address@hidden>
---
scripts/qapi.py | 4 +++-
1 file modificato, 3 inserzioni(+). 1 rimozione(-)
diff --git a/scripts/qapi.py b/scripts/qapi.py
index 057332e..afc5f32 100644
--- a/scripts/qapi.py
+++ b/scripts/qapi.py
@@ -156,7 +156,9 @@ def c_var(name, protect=True):
# GCC http://gcc.gnu.org/onlinedocs/gcc-4.7.1/gcc/C-Extensions.html
# excluding _.*
gcc_words = set(['asm', 'typeof'])
- if protect and (name in c89_words | c99_words | c11_words | gcc_words):
+ # namespace pollution:
+ polluted_words = set(['unix'])
+ if protect and (name in c89_words | c99_words | c11_words | gcc_words |
polluted_words):
return "q_" + name
return name.replace('-', '_').lstrip("*")
--
1.7.12
Re: [Qemu-devel] [PATCH 04/12] qapi: add "unix" to the set of reserved words, Luiz Capitulino, 2012/09/20
[Qemu-devel] [PATCH 06/12] qapi: add socket address types, Paolo Bonzini, 2012/09/19
[Qemu-devel] [PATCH 07/12] qemu-sockets: add error propagation to inet_parse, Paolo Bonzini, 2012/09/19
[Qemu-devel] [PATCH 08/12] qemu-sockets: add error propagation to Unix socket functions, Paolo Bonzini, 2012/09/19