X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=generate-binding-glue.py;h=4791b4dc86653ad2d30270f67960ebd7112ed75b;hb=12e25b3a50e443814289bba6d9ac8eaa644bbbd6;hp=086ad32bbafab2236314cbd2f770a76faa206c10;hpb=01058af8b919e1c58207008ea9609f2e7b23efac;p=staging%2Fwindowmanager.git diff --git a/generate-binding-glue.py b/generate-binding-glue.py index 086ad32..4791b4d 100644 --- a/generate-binding-glue.py +++ b/generate-binding-glue.py @@ -73,7 +73,8 @@ def emit_afb_verbs(api): p(' {}', '};') def emit_binding(api): - p('namespace {', '') + p('namespace {') + p('std::mutex binding_m;', '') for func in api['functions']: emit_func(api, func) p('} // namespace', '') @@ -95,7 +96,7 @@ def emit_afb_api(api): for f in api['functions']: p(' result_type %(name)s(' % f + ', '.join(map(lambda x: '%(type)s %(name)s' % x, f.get('args', []))) + ');') p('};', '') - p('} // namespace wm') + p('} // namespace wm', '') # names must always be valid in c and unique for each function (that is its arguments) # arguments will be looked up from json request, range checking needs to be implemented