mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-29 13:23:54 -06:00
qapi: add "unix" to the set of reserved words
It is #defined to 1. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
This commit is contained in:
parent
eda50a656f
commit
1057725f66
1 changed files with 3 additions and 1 deletions
|
@ -156,7 +156,9 @@ def c_var(name, protect=True):
|
||||||
# GCC http://gcc.gnu.org/onlinedocs/gcc-4.7.1/gcc/C-Extensions.html
|
# GCC http://gcc.gnu.org/onlinedocs/gcc-4.7.1/gcc/C-Extensions.html
|
||||||
# excluding _.*
|
# excluding _.*
|
||||||
gcc_words = set(['asm', 'typeof'])
|
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 "q_" + name
|
||||||
return name.replace('-', '_').lstrip("*")
|
return name.replace('-', '_').lstrip("*")
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue