Mercurial > hg > Members > Moririn
view src/include/allocate.h @ 438:7679093bdd72
Work CUDAtwice
author | Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 06 Nov 2017 00:11:43 +0900 |
parents | 368306e1bfed |
children |
line wrap: on
line source
__code allocate(); __code meta_allocate(); __code allocate(struct Context* context) { goto meta_allocate(context); } __code meta_allocate(struct Context* context) { context->data[++context->dataNum] = context->heap; context->heap += context->data[0]->allocate.size; goto meta(context, context->next[--context->current]); }