1
0
Fork 0
mirror of https://github.com/perlbot/perlbuut synced 2025-06-07 10:35:41 -04:00
perlbuut/deps/JavaScript-SpiderMonkey-0.19-patched/SpiderMonkey.h
2009-12-05 00:02:04 -05:00

12 lines
311 B
C

/* Strucuture that keeps track of contexts */
struct PJS_Context {
/* total number of branch_operations the runtime went through in this context */
int branch_count;
/* max number of branch_operations allowed in this context */
int branch_max;
};
typedef struct PJS_Context PJS_Context;