How to use TLSF library as a RTLinux Module
-------------------------------------------


///////////////////////////////////////////

int init_module(void) {
	return init_malloc(memory_pool_size); // with memory_pool_size
					      // in Kbytes
}

void cleanup_module (void) {
	cleanup_malloc();
}

///////////////////////////////////////////