comparison src/include/context.h @ 13:a765eb7f3b7c

implement delete, traverse
author Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
date Tue, 07 Apr 2015 15:39:14 +0900
parents
children
comparison
equal deleted inserted replaced
12:81411d8f9a77 13:a765eb7f3b7c
1 typedef struct Context_st {
2 void* ds;
3 void* mds;
4 void* ds_heap;
5 void* mds_heap;
6 __code (*next)();
7 void* head;
8 } Context;