cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

struct-base-clash.json (237B)


      1# Reject attempts to duplicate QMP members
      2# Here, 'name' would have to appear twice on the wire, locally and for base.
      3{ 'struct': 'Base',
      4  'data': { 'name': 'str' } }
      5{ 'struct': 'Sub',
      6  'base': 'Base',
      7  'data': { 'name': 'str' } }