Revision 99afc91d qapi-schema.json

b/qapi-schema.json
2454 2454
#
2455 2455
##
2456 2456
{ 'command': 'query-fdsets', 'returns': ['FdsetInfo'] }
2457

  
2458
##
2459
# @TargetType
2460
#
2461
# Target CPU emulation type
2462
#
2463
# These parameters correspond to the softmmu binary CPU name that is currently
2464
# running.
2465
#
2466
# Since: 1.2.0
2467
##
2468
{ 'enum': 'TargetType',
2469
  'data': [ 'alpha', 'arm', 'cris', 'i386', 'lm32', 'm68k', 'microblazeel',
2470
            'microblaze', 'mips64el', 'mips64', 'mipsel', 'mips', 'or32',
2471
            'ppc64', 'ppcemb', 'ppc', 's390x', 'sh4eb', 'sh4', 'sparc64',
2472
            'sparc', 'unicore32', 'x86_64', 'xtensaeb', 'xtensa' ] }
2473

  
2474
##
2475
# @TargetInfo:
2476
#
2477
# Information describing the QEMU target.
2478
#
2479
# @arch: the target architecture (eg "x86_64", "i386", etc)
2480
#
2481
# Since: 1.2.0
2482
##
2483
{ 'type': 'TargetInfo',
2484
  'data': { 'arch': 'TargetType' } }
2485

  
2486
##
2487
# @query-target:
2488
#
2489
# Return information about the target for this QEMU
2490
#
2491
# Returns: TargetInfo
2492
#
2493
# Since: 1.2.0
2494
##
2495
{ 'command': 'query-target', 'returns': 'TargetInfo' }

Also available in: Unified diff