view src/include/context.h @ 18:ec4e7a81bddf

modify allocate
author Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
date Tue, 21 Apr 2015 13:33:23 +0900
parents a765eb7f3b7c
children
line wrap: on
line source

typedef struct Context_st {
    void* ds;
    void* mds;
    void* ds_heap;
    void* mds_heap;
    __code (*next)();
    void* head;
} Context;