mirror of
				https://github.com/go-delve/delve.git
				synced 2025-10-31 18:57:18 +08:00 
			
		
		
		
	 15bac71979
			
		
	
	15bac71979
	
	
	
		
			
			- move native backend to pkg/proc/native - move gdbserver backend to pkg/proc/gdbserial - move core dumps backend to pkg/proc/core
		
			
				
	
	
		
			11 lines
		
	
	
		
			225 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			225 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "proc_darwin.h"
 | |
| 
 | |
| #include <unistd.h>
 | |
| #include <sys/ptrace.h>
 | |
| #include <errno.h>
 | |
| #include <stdlib.h>
 | |
| #include <fcntl.h>
 | |
| 
 | |
| int
 | |
| fork_exec(char *, char **, int, char *, task_t*, mach_port_t*, mach_port_t*, mach_port_t*);
 |