+20
−20
+36
−36
+12
−12
Loading
When "//export someMethod" is used, the Go method with the listed
name is exported in the global linker namespace. If multiple Go
modules export "someMethod" they will clash at link time.
To address this, all exported Go methods will gain a 'virGo'
prefix to scope them to libvirt's typical C namespace. The matching
C helpers will also gain 'virGo' for consistency, even if they are
static.
Signed-off-by:
Daniel P. Berrangé <berrange@redhat.com>