41 lines
		
	
	
		
			382 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			382 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| 
 | |
| #include "./coroutine.hpp"
 | |
| 
 | |
| #include <array>
 | |
| #include <cstdio>
 | |
| #include "../util/os.hpp"
 | |
| 
 | |
| namespace mijin
 | |
| {
 | |
| 
 | |
| //
 | |
| // internal defines
 | |
| //
 | |
| 
 | |
| //
 | |
| // internal constants
 | |
| //
 | |
| 
 | |
| //
 | |
| // internal types
 | |
| //
 | |
| 
 | |
| //
 | |
| // internal variables
 | |
| //
 | |
| 
 | |
| namespace impl
 | |
| {
 | |
| thread_local std::shared_ptr<TaskSharedState> gCurrentTaskState;
 | |
| }
 | |
| 
 | |
| //
 | |
| // internal functions
 | |
| //
 | |
| 
 | |
| //
 | |
| // public functions
 | |
| //
 | |
| 
 | |
| } // namespace mijin
 |