@@ -377,8 +377,8 @@ PCRE2 NATIVE API JIT FUNCTIONS
377
377
378
378
void pcre2_jit_free_unused_memory(pcre2_general_context *gcontext);
379
379
380
- pcre2_jit_stack *pcre2_jit_stack_create(PCRE2_SIZE startsize,
381
- PCRE2_SIZE maxsize, pcre2_general_context *gcontext);
380
+ pcre2_jit_stack *pcre2_jit_stack_create(size_t startsize,
381
+ size_t maxsize, pcre2_general_context *gcontext);
382
382
383
383
void pcre2_jit_stack_assign(pcre2_match_context *mcontext,
384
384
pcre2_jit_callback callback_function, void *callback_data);
@@ -432,7 +432,7 @@ PCRE2 NATIVE API OBSOLETE FUNCTIONS
432
432
433
433
int pcre2_set_recursion_memory_management(
434
434
pcre2_match_context *mcontext,
435
- void *(*private_malloc)(PCRE2_SIZE , void *),
435
+ void *(*private_malloc)(size_t , void *),
436
436
void (*private_free)(void *, void *), void *memory_data);
437
437
438
438
These functions became obsolete at release 10.30 and are retained only
@@ -1991,8 +1991,8 @@ JUST-IN-TIME (JIT) COMPILATION
1991
1991
1992
1992
void pcre2_jit_free_unused_memory(pcre2_general_context *gcontext);
1993
1993
1994
- pcre2_jit_stack *pcre2_jit_stack_create(PCRE2_SIZE startsize,
1995
- PCRE2_SIZE maxsize, pcre2_general_context *gcontext);
1994
+ pcre2_jit_stack *pcre2_jit_stack_create(size_t startsize,
1995
+ size_t maxsize, pcre2_general_context *gcontext);
1996
1996
1997
1997
void pcre2_jit_stack_assign(pcre2_match_context *mcontext,
1998
1998
pcre2_jit_callback callback_function, void *callback_data);
@@ -5197,7 +5197,7 @@ AVAILABILITY OF JIT SUPPORT
5197
5197
Intel x86 32-bit and 64-bit
5198
5198
MIPS 32-bit and 64-bit
5199
5199
Power PC 32-bit and 64-bit
5200
- SPARC 32-bit
5200
+ RISC-V 32-bit and 64 -bit
5201
5201
5202
5202
If --enable-jit is set on an unsupported platform, compilation fails.
5203
5203
@@ -5596,7 +5596,7 @@ AUTHOR
5596
5596
5597
5597
REVISION
5598
5598
5599
- Last updated: 21 January 2023
5599
+ Last updated: 23 January 2023
5600
5600
Copyright (c) 1997-2023 University of Cambridge.
5601
5601
------------------------------------------------------------------------------
5602
5602
0 commit comments