Added asyncsg field into Process

This commit is contained in:
hyunghwan.chung
2018-05-15 16:38:37 +00:00
parent 2d24c53481
commit da0b655d40
4 changed files with 81 additions and 22 deletions

View File

@ -753,7 +753,7 @@ struct moo_context_t
};
#define MOO_PROCESS_NAMED_INSTVARS 12
#define MOO_PROCESS_NAMED_INSTVARS 13
typedef struct moo_process_t moo_process_t;
typedef struct moo_process_t* moo_oop_process_t;
@ -791,6 +791,8 @@ struct moo_process_t
moo_oop_t perr; /* last error set by a primitive function */
moo_oop_t perrmsg;
moo_oop_t asyncsg;
/* == variable indexed part == */
moo_oop_t slot[1]; /* process stack */
};