28 lines
		
	
	
		
			806 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			806 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "kernel/system.h"
 | 
						|
#include <minix/endpoint.h>
 | 
						|
#include "kernel/clock.h"
 | 
						|
 | 
						|
/*===========================================================================*
 | 
						|
 *				do_schedule				     *
 | 
						|
 *===========================================================================*/
 | 
						|
PUBLIC int do_schedule(struct proc * caller, message * m_ptr)
 | 
						|
{
 | 
						|
	struct proc *p;
 | 
						|
	int proc_nr;
 | 
						|
	unsigned priority, quantum;
 | 
						|
 | 
						|
	if (!isokendpt(m_ptr->SCHEDULING_ENDPOINT, &proc_nr))
 | 
						|
		return EINVAL;
 | 
						|
 | 
						|
	p = proc_addr(_ENDPOINT_P(m_ptr->SCHEDULING_ENDPOINT));
 | 
						|
 | 
						|
	/* Only this process' scheduler can schedule it */
 | 
						|
	if (caller != p->p_scheduler)
 | 
						|
		return(EPERM);
 | 
						|
 | 
						|
	/* Try to schedule the process. */
 | 
						|
	priority = (unsigned) m_ptr->SCHEDULING_PRIORITY;
 | 
						|
	quantum = (unsigned) m_ptr->SCHEDULING_QUANTUM;
 | 
						|
	return sched_proc(p, priority, quantum);
 | 
						|
}
 |