A Whole New World (clang-format edition)
I can show you the code Pretty, with proper whitespace Tell me, coder, now when did You last write readable code? I can open your eyes Make you see your bad indent Force you to respect the style The core devs agreed upon A whole new world A new fantastic code format A de facto standard With some sugar Enforced with clang-format A whole new world A dazzling style we all dreamed of And when we read it through It's crystal clear That now we're in a whole new world of code
This commit is contained in:
@ -28,38 +28,35 @@
|
||||
/*************************************************************************/
|
||||
#include "dvector.h"
|
||||
|
||||
Mutex* dvector_lock=NULL;
|
||||
Mutex *dvector_lock = NULL;
|
||||
|
||||
PoolAllocator *MemoryPool::memory_pool=NULL;
|
||||
uint8_t *MemoryPool::pool_memory=NULL;
|
||||
size_t *MemoryPool::pool_size=NULL;
|
||||
PoolAllocator *MemoryPool::memory_pool = NULL;
|
||||
uint8_t *MemoryPool::pool_memory = NULL;
|
||||
size_t *MemoryPool::pool_size = NULL;
|
||||
|
||||
MemoryPool::Alloc *MemoryPool::allocs = NULL;
|
||||
MemoryPool::Alloc *MemoryPool::free_list = NULL;
|
||||
uint32_t MemoryPool::alloc_count = 0;
|
||||
uint32_t MemoryPool::allocs_used = 0;
|
||||
Mutex *MemoryPool::alloc_mutex = NULL;
|
||||
|
||||
MemoryPool::Alloc *MemoryPool::allocs=NULL;
|
||||
MemoryPool::Alloc *MemoryPool::free_list=NULL;
|
||||
uint32_t MemoryPool::alloc_count=0;
|
||||
uint32_t MemoryPool::allocs_used=0;
|
||||
Mutex *MemoryPool::alloc_mutex=NULL;
|
||||
|
||||
size_t MemoryPool::total_memory=0;
|
||||
size_t MemoryPool::max_memory=0;
|
||||
|
||||
size_t MemoryPool::total_memory = 0;
|
||||
size_t MemoryPool::max_memory = 0;
|
||||
|
||||
void MemoryPool::setup(uint32_t p_max_allocs) {
|
||||
|
||||
allocs = memnew_arr( Alloc, p_max_allocs);
|
||||
allocs = memnew_arr(Alloc, p_max_allocs);
|
||||
alloc_count = p_max_allocs;
|
||||
allocs_used=0;
|
||||
allocs_used = 0;
|
||||
|
||||
for(uint32_t i=0;i<alloc_count-1;i++) {
|
||||
for (uint32_t i = 0; i < alloc_count - 1; i++) {
|
||||
|
||||
allocs[i].free_list=&allocs[i+1];
|
||||
allocs[i].free_list = &allocs[i + 1];
|
||||
}
|
||||
|
||||
free_list=&allocs[0];
|
||||
free_list = &allocs[0];
|
||||
|
||||
alloc_mutex = Mutex::create();
|
||||
|
||||
}
|
||||
|
||||
void MemoryPool::cleanup() {
|
||||
@ -68,6 +65,5 @@ void MemoryPool::cleanup() {
|
||||
memdelete(alloc_mutex);
|
||||
|
||||
ERR_EXPLAINC("There are still MemoryPool allocs in use at exit!");
|
||||
ERR_FAIL_COND(allocs_used>0);
|
||||
|
||||
ERR_FAIL_COND(allocs_used > 0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user