Re: [pcre-dev] PCRE2: PCRE2_INFO_JIT in docs, but not in pcre2.h

2014-11-30 Thread Zoltán Herczeg
Hi, That's an error in the docs, incorrect editing of the PCRE1 document. What it should be saying is that you can use PCRE2_INFO_JITSIZE. If the result is non-zero, JIT compilation was successful. Thanks for noticing! This gives a bit more depth to JIT complation check. In PCRE2, you can call

Re: [pcre-dev] PCRE2: PCRE2_INFO_JIT in docs, but not in pcre2.h

2014-11-28 Thread ph10
On Thu, 27 Nov 2014, Ralf Junker wrote: pcre2jit.html reads: You can find out if JIT matching is available after compiling a pattern by calling pcre2_pattern_info() with the PCRE2_INFO_JIT option. A result of 1 means that JIT compilation was successful. A result of 0 means that JIT support

[pcre-dev] PCRE2: PCRE2_INFO_JIT in docs, but not in pcre2.h

2014-11-27 Thread Ralf Junker
pcre2jit.html reads: You can find out if JIT matching is available after compiling a pattern by calling pcre2_pattern_info() with the PCRE2_INFO_JIT option. A result of 1 means that JIT compilation was successful. A result of 0 means that JIT support is not available, or the pattern was not