view src/synchronizedQueue/allocate.h @ 189:39d87ba6039d

fix
author mir3636
date Fri, 16 Dec 2016 16:38:31 +0900
parents a870c84acd0e
children
line wrap: on
line source

void allocator(struct Context* context) { 
    context->data[++context->dataNum] = context->heap; 
    context->heap += context->data[0]->allocate.size; 
    return;
}