- regions were preivous stored in a linked list, as 'normally'
    there are just 2 or 3 (text, data, stack), but that's slow
    if lots of regions are made with mmap()
  - measurable performance improvement with gcc and clang
		
	
			
		
			
				
	
	
		
			11 lines
		
	
	
		
			142 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			142 B
		
	
	
	
		
			C
		
	
	
	
	
	
 | 
						|
#ifndef _REGIONAVL_H 
 | 
						|
#define _REGIONAVL_H 
 | 
						|
 | 
						|
#include "region.h"
 | 
						|
#include "regionavl_defs.h"
 | 
						|
#include "cavl_if.h"
 | 
						|
#include "unavl.h"
 | 
						|
 | 
						|
#endif
 |