You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			355 B
		
	
	
	
		
			C++
		
	
			
		
		
	
	
			18 lines
		
	
	
		
			355 B
		
	
	
	
		
			C++
		
	
| // vim: set noet ts=4 sw=4:
 | |
| 
 | |
| #include "dispatcher.h"
 | |
| 
 | |
| Dispatcher::Dispatcher() {}
 | |
| 
 | |
| Thread *Dispatcher::active() { return nullptr; }
 | |
| 
 | |
| bool Dispatcher::isActive(const Thread *thread, unsigned *cpu) {
 | |
|   (void)thread;
 | |
|   (void)cpu;
 | |
|   return false;
 | |
| }
 | |
| 
 | |
| void Dispatcher::go(Thread *first) { (void)first; }
 | |
| 
 | |
| void Dispatcher::dispatch(Thread *next) { (void)next; }
 |