view src/allocate/allocateContext.h @ 50:d191faf19961

add graffle
author Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2015 01:52:45 +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;
};