 1ce6be24df
			
		
	
	
		1ce6be24df
		
	
	
	
	
		
			
			Some are called do_info_SUBCOMMAND() (old ones, usually), some hmp_info_SUBCOMMAND(), some SUBCOMMAND_info(), sometimes SUBCOMMAND pointlessly differs in spelling. Normalize to hmp_info_SUBCOMMAND(), where SUBCOMMAND is exactly the subcommand name with '-' replaced by '_'. Exceptions: * sun4m_irq_info(), sun4m_pic_info() renamed to sun4m_hmp_info_irq(), sun4m_hmp_info_pic(). * lm32_irq_info(), lm32_pic_info() renamed to lm32_hmp_info_irq(), lm32_hmp_info_pic(). Signed-off-by: Markus Armbruster <armbru@redhat.com>
		
			
				
	
	
		
			16 lines
		
	
	
		
			414 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			414 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef QEMU_QDEV_MONITOR_H
 | |
| #define QEMU_QDEV_MONITOR_H
 | |
| 
 | |
| #include "hw/qdev-core.h"
 | |
| #include "monitor/monitor.h"
 | |
| 
 | |
| /*** monitor commands ***/
 | |
| 
 | |
| void hmp_info_qtree(Monitor *mon, const QDict *qdict);
 | |
| void hmp_info_qdm(Monitor *mon, const QDict *qdict);
 | |
| int do_device_add(Monitor *mon, const QDict *qdict, QObject **ret_data);
 | |
| int qdev_device_help(QemuOpts *opts);
 | |
| DeviceState *qdev_device_add(QemuOpts *opts);
 | |
| 
 | |
| #endif
 |