]> xenbits.xensource.com Git - libvirt.git/commit
docs: Format bit shift and hex notation for bitwise flag enums
authorPeter Krempa <pkrempa@redhat.com>
Thu, 24 Jan 2019 11:23:15 +0000 (12:23 +0100)
committerPeter Krempa <pkrempa@redhat.com>
Thu, 31 Jan 2019 11:02:35 +0000 (12:02 +0100)
commit63cbad4e052ad503143e2c056972c838b27062e0
tree80223db160c21a88d7bf7ff38c6936ba80a56af2
parent6a306a6b8fba1bb323565354d5f1089fde12ce0d
docs: Format bit shift and hex notation for bitwise flag enums

Big number itself does not make much sense in some cases. Format the
bitshift format as well.

Changes our web page docs from:

VIR_MIGRATE_POSTCOPY = 32768 : Setting the VIR_MIGRATE_POSTCOPY...
VIR_MIGRATE_TLS      = 65536 : Setting the VIR_MIGRATE_TLS flag...

to:

VIR_MIGRATE_POSTCOPY = 32768 (0x8000; 1 << 15)  : Setting the VIR_MIGRATE_POSTCOPY...
VIR_MIGRATE_TLS      = 65536 (0x10000; 1 << 16) : Setting the VIR_MIGRATE_TLS flag...

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
docs/apibuild.py
docs/libvirt.css
docs/newapi.xsl