mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 20:44:16 +00:00 
			
		
		
		
	 d0fb9657a3
			
		
	
	
		d0fb9657a3
		
	
	
	
	
		
			
			Commit e50caf4a5c ("tracing: convert documentation to rST")
converted docs/devel/tracing.txt to docs/devel/tracing.rst.
We still have several references to the old file, so let's fix them
with the following command:
  sed -i s/tracing.txt/tracing.rst/ $(git grep -l docs/devel/tracing.txt)
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210517151702.109066-2-sgarzare@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
		
	
			
		
			
				
	
	
		
			23 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # See docs/devel/tracing.rst for syntax documentation.
 | |
| 
 | |
| # signal.c
 | |
| signal_table_init(int i) "number of unavailable signals: %d"
 | |
| signal_do_sigaction_guest(int sig, int max) "target signal %d (MAX %d)"
 | |
| signal_do_sigaction_host(int sig, int max) "host signal %d (MAX %d)"
 | |
| # */signal.c
 | |
| user_setup_frame(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx64
 | |
| user_setup_rt_frame(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx64
 | |
| user_do_rt_sigreturn(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx64
 | |
| user_do_sigreturn(void *env, uint64_t frame_addr) "env=%p frame_addr=0x%"PRIx64
 | |
| user_force_sig(void *env, int target_sig, int host_sig) "env=%p signal %d (host %d)"
 | |
| user_handle_signal(void *env, int target_sig) "env=%p signal %d"
 | |
| user_host_signal(void *env, int host_sig, int target_sig) "env=%p signal %d (target %d("
 | |
| user_queue_signal(void *env, int target_sig) "env=%p signal %d"
 | |
| user_s390x_restore_sigregs(void *env, uint64_t sc_psw_addr, uint64_t env_psw_addr) "env=%p frame psw.addr 0x%"PRIx64 " current psw.addr 0x%"PRIx64
 | |
| 
 | |
| # mmap.c
 | |
| target_mprotect(uint64_t start, uint64_t len, int flags) "start=0x%"PRIx64 " len=0x%"PRIx64 " prot=0x%x"
 | |
| target_mmap(uint64_t start, uint64_t len, int pflags, int mflags, int fd, uint64_t offset) "start=0x%"PRIx64 " len=0x%"PRIx64 " prot=0x%x flags=0x%x fd=%d offset=0x%"PRIx64
 | |
| target_mmap_complete(uint64_t retaddr) "retaddr=0x%"PRIx64
 | |
| target_munmap(uint64_t start, uint64_t len) "start=0x%"PRIx64" len=0x%"PRIx64
 |