mirror of
https://github.com/perlbot/perlbuut
synced 2025-06-07 10:35:41 -04:00
12 lines
311 B
Text
12 lines
311 B
Text
|
|
/* 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;
|
|
|