* Renamed struct timer to struct minix_timer * Renamed timer_t to minix_timer_t * Ensured all the code uses the minix_timer_t typedef * Removed ifdef around _BSD_TIMER_T * Removed include/timers.h and merged it into include/minix/timers.h * Resolved prototype conflict by renaming kernel's (re)set_timer to (re)set_kernel_timer. Change-Id: I56f0f30dfed96e1a0575d92492294cf9a06468a5
		
			
				
	
	
		
			65 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef KERNEL_H
 | 
						|
#define KERNEL_H
 | 
						|
 | 
						|
/* boot verbose */
 | 
						|
#define CONFIG_BOOT_VERBOSE
 | 
						|
 | 
						|
#ifndef CONFIG_MAX_CPUS
 | 
						|
#define CONFIG_MAX_CPUS	1
 | 
						|
#endif
 | 
						|
 | 
						|
/* OXPCIe952 PCIe with 2 UARTs in-kernel support */
 | 
						|
#define CONFIG_OXPCIE	0
 | 
						|
 | 
						|
/* This is the master header for the kernel.  It includes some other files
 | 
						|
 * and defines the principal constants.
 | 
						|
 */
 | 
						|
#define _SYSTEM            1	/* tell headers that this is the kernel */
 | 
						|
 | 
						|
/*
 | 
						|
 * we need the defines above in assembly files to configure the kernel
 | 
						|
 * correctly. However we don't need the rest
 | 
						|
 */
 | 
						|
#ifndef __ASSEMBLY__
 | 
						|
 | 
						|
/* The following are so basic, all the *.c files get them automatically. */
 | 
						|
#include <minix/config.h>	/* global configuration, MUST be first */
 | 
						|
#include <sys/types.h>		/* general system types */
 | 
						|
#include <minix/const.h>	/* MINIX specific constants */
 | 
						|
#include <minix/type.h>		/* MINIX specific types, e.g. message */
 | 
						|
#include <minix/ipc.h>		/* MINIX run-time system */
 | 
						|
#include <minix/sysutil.h>	/* MINIX utility library functions */
 | 
						|
#include <minix/timers.h>		/* watchdog timer management */
 | 
						|
#include <errno.h>		/* return codes and error numbers */
 | 
						|
#include <sys/param.h>
 | 
						|
#include <minix/param.h>
 | 
						|
 | 
						|
/* Important kernel header files. */
 | 
						|
#include "kernel/config.h"		/* configuration, MUST be first */
 | 
						|
#include "kernel/const.h"		/* constants, MUST be second */
 | 
						|
#include "kernel/type.h"		/* type definitions, MUST be third */
 | 
						|
#include "kernel/proto.h"		/* function prototypes */
 | 
						|
#include "kernel/glo.h"		/* global variables */
 | 
						|
#include "kernel/ipc.h"		/* IPC constants */
 | 
						|
#include "kernel/profile.h"		/* system profiling */
 | 
						|
#include "kernel/proc.h"		/* process table */
 | 
						|
#include "kernel/cpulocals.h"		/* CPU-local variables */
 | 
						|
#include "kernel/debug.h"		/* debugging, MUST be last kernel header */
 | 
						|
 | 
						|
#ifndef CONFIG_SMP
 | 
						|
/* We only support 1 cpu now */
 | 
						|
#define CONFIG_MAX_CPUS	1
 | 
						|
#define cpuid		0
 | 
						|
/* this is always true on an uniprocessor */
 | 
						|
#define cpu_is_bsp(x) 1
 | 
						|
 | 
						|
#else
 | 
						|
 | 
						|
#include "kernel/smp.h"
 | 
						|
 | 
						|
#endif
 | 
						|
 | 
						|
#endif /* __ASSEMBLY__ */
 | 
						|
 | 
						|
#endif /* KERNEL_H */
 |