]> git.proxmox.com Git - mirror_qemu.git/commitdiff
qapi: add "unix" to the set of reserved words
authorPaolo Bonzini <pbonzini@redhat.com>
Wed, 19 Sep 2012 14:31:07 +0000 (16:31 +0200)
committerLuiz Capitulino <lcapitulino@redhat.com>
Wed, 26 Sep 2012 13:45:02 +0000 (10:45 -0300)
It is #defined to 1.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
scripts/qapi.py

index 057332e4ca29086728ab75616de5aabc2b4425b4..afc5f32aebe4c522a7d6269787f9a98d93da830f 100644 (file)
@@ -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("*")