From ffc3b37f969a779f93b8f8a5b3591b4ef7de1538 Mon Sep 17 00:00:00 2001 From: Yusuke Endoh Date: Thu, 24 Mar 2022 16:59:11 +0900 Subject: re.c: Add Regexp.timeout= and Regexp.timeout [Feature #17837] --- regint.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'regint.h') diff --git a/regint.h b/regint.h index 0e9777cc1e..6c88f278c1 100644 --- a/regint.h +++ b/regint.h @@ -152,6 +152,7 @@ msa->counter++; \ if (msa->counter >= 128) { \ msa->counter = 0; \ + rb_reg_check_timeout(reg, &msa->end_time); \ rb_thread_check_ints(); \ } \ } while(0) @@ -877,6 +878,12 @@ typedef struct { int state_check_buff_size; #endif int counter; + /* rb_hrtime_t from hrtime.h */ +#ifdef MY_RUBY_BUILD_MAY_TIME_TRAVEL + int128_t end_time; +#else + uint64_t end_time; +#endif } OnigMatchArg; @@ -942,6 +949,7 @@ extern int onig_st_insert_strend(hash_table_type* table, const UChar* str_key, c #ifdef RUBY extern size_t onig_memsize(const regex_t *reg); extern size_t onig_region_memsize(const struct re_registers *regs); +void rb_reg_check_timeout(regex_t *reg, void *end_time); #endif RUBY_SYMBOL_EXPORT_END -- cgit v1.2.1