Mercurial > hg > Gears > GearsAgda
view src/allocate/allocateContext.h @ 168:fa7419e2c67c
Add synchornizedQueue
author | Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 22 Nov 2016 04:21:11 +0900 |
parents | 1eb599acffe4 |
children |
line wrap: on
line source
/* Context definition for allocate example */ enum Code { Code1, Code2, Code3, Allocate, Exit, }; struct Context { int codeSize; __code (**code) (struct Context *); void* heap; int dataSize; union Data **data; }; union Data { char data[8]; long count; struct Allocate { long size; enum Code next; } allocate; };