view src/include/context.h @ 361:a2c01ab30ea2

Add synchronized queue of paper
author Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp>
date Wed, 28 Jun 2017 05:48:39 +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;