- Fix for possible unset uid/gid in toproto
 - Fix for default mtree style
 - Update libelf
 - Importing libexecinfo
 - Resynchronize GCC, mpc, gmp, mpfr
 - build.sh: Replace params with show-params.
     This has been done as the make target has been renamed in the same
     way, while a new target named params has been added. This new
     target generates a file containing all the parameters, instead of
     printing it on the console.
 - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org)
     get getservbyport() out of the inner loop
Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
		
	
			
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#define _SYSTEM		1	/* get OK and negative error codes */
 | 
						|
 | 
						|
#include <minix/callnr.h>
 | 
						|
#include <minix/com.h>
 | 
						|
#include <minix/config.h>
 | 
						|
#include <minix/ipc.h>
 | 
						|
#include <minix/endpoint.h>
 | 
						|
#include <minix/sysutil.h>
 | 
						|
#include <minix/const.h>
 | 
						|
#include <minix/type.h>
 | 
						|
#include <minix/syslib.h>
 | 
						|
 | 
						|
#include <sys/types.h>
 | 
						|
#include <sys/ipc.h>
 | 
						|
#include <sys/shm.h>
 | 
						|
#include <sys/sem.h>
 | 
						|
#include <sys/mman.h>
 | 
						|
#include <machine/param.h>
 | 
						|
#include <machine/vm.h>
 | 
						|
#include <machine/vmparam.h>
 | 
						|
#include <sys/vm.h>
 | 
						|
 | 
						|
#include <lib.h>
 | 
						|
#include <time.h>
 | 
						|
#include <stdio.h>
 | 
						|
#include <string.h>
 | 
						|
#include <stdlib.h>
 | 
						|
#include <unistd.h>
 | 
						|
#include <errno.h>
 | 
						|
#include <signal.h>
 | 
						|
 | 
						|
int do_shmget(message *);
 | 
						|
int do_shmat(message *);
 | 
						|
int do_shmdt(message *);
 | 
						|
int do_shmctl(message *);
 | 
						|
int check_perm(struct ipc_perm *, endpoint_t, int);
 | 
						|
void update_refcount_and_destroy(void);
 | 
						|
int do_semget(message *);
 | 
						|
int do_semctl(message *);
 | 
						|
int do_semop(message *);
 | 
						|
int is_sem_nil(void);
 | 
						|
int is_shm_nil(void);
 | 
						|
void sem_process_vm_notify(void);
 | 
						|
 | 
						|
EXTERN int identifier;
 | 
						|
EXTERN endpoint_t who_e;
 | 
						|
EXTERN int call_type;
 |