 878ba523ac
			
		
	
	
		878ba523ac
		
	
	
	
	
		
			
			This library includes various random and minix-specific functions included in the Minix libc. Most of them should be part of libsys, and in general it would be nice to extinguish this library over time.
		
			
				
	
	
		
			12 lines
		
	
	
		
			197 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			197 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include <lib.h>
 | |
| #include <unistd.h>
 | |
| 
 | |
| PUBLIC int vm_memctl(endpoint_t ep, int req)
 | |
| {
 | |
| 	message m;
 | |
| 	m.VM_RS_CTL_ENDPT = ep;
 | |
| 	m.VM_RS_CTL_REQ = req;
 | |
| 
 | |
| 	return _syscall(VM_PROC_NR, VM_RS_MEMCTL, &m);
 | |
| }
 |