Documentation update.
This commit is contained in:
parent
a33d61aada
commit
b69460ece3
|
@ -43,12 +43,14 @@ bits:
|
||||||
</pre>
|
</pre>
|
||||||
There is also an obsolete option called PCRE2_JIT_INVALID_UTF, which has been
|
There is also an obsolete option called PCRE2_JIT_INVALID_UTF, which has been
|
||||||
superseded by the <b>pcre2_compile()</b> option PCRE2_MATCH_INVALID_UTF. The old
|
superseded by the <b>pcre2_compile()</b> option PCRE2_MATCH_INVALID_UTF. The old
|
||||||
option is deprecated and may be removed in future.
|
option is deprecated and may be removed in the future.
|
||||||
</P>
|
</P>
|
||||||
<P>
|
<P>
|
||||||
The yield of the function is 0 for success, or a negative error code otherwise.
|
The yield of the function is 0 for success, or a negative error code otherwise.
|
||||||
In particular, PCRE2_ERROR_JIT_BADOPTION is returned if JIT is not supported or
|
In particular, PCRE2_ERROR_JIT_BADOPTION is returned if JIT is not supported or
|
||||||
if an unknown bit is set in <i>options</i>.
|
if an unknown bit is set in <i>options</i>. The function can also return
|
||||||
|
PCRE2_ERROR_NOMEMORY if JIT is unable to allocate executable memory for the
|
||||||
|
compiler, even if it was because of a system security restriction.
|
||||||
</P>
|
</P>
|
||||||
<P>
|
<P>
|
||||||
There is a complete description of the PCRE2 native API in the
|
There is a complete description of the PCRE2 native API in the
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH PCRE2_JIT_COMPILE 3 "23 May 2019" "PCRE2 10.34"
|
.TH PCRE2_JIT_COMPILE 3 "29 July 2019" "PCRE2 10.34"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
PCRE2 - Perl-compatible regular expressions (revised API)
|
PCRE2 - Perl-compatible regular expressions (revised API)
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -32,11 +32,13 @@ bits:
|
||||||
.sp
|
.sp
|
||||||
There is also an obsolete option called PCRE2_JIT_INVALID_UTF, which has been
|
There is also an obsolete option called PCRE2_JIT_INVALID_UTF, which has been
|
||||||
superseded by the \fBpcre2_compile()\fP option PCRE2_MATCH_INVALID_UTF. The old
|
superseded by the \fBpcre2_compile()\fP option PCRE2_MATCH_INVALID_UTF. The old
|
||||||
option is deprecated and may be removed in future.
|
option is deprecated and may be removed in the future.
|
||||||
.P
|
.P
|
||||||
The yield of the function is 0 for success, or a negative error code otherwise.
|
The yield of the function is 0 for success, or a negative error code otherwise.
|
||||||
In particular, PCRE2_ERROR_JIT_BADOPTION is returned if JIT is not supported or
|
In particular, PCRE2_ERROR_JIT_BADOPTION is returned if JIT is not supported or
|
||||||
if an unknown bit is set in \fIoptions\fP.
|
if an unknown bit is set in \fIoptions\fP. The function can also return
|
||||||
|
PCRE2_ERROR_NOMEMORY if JIT is unable to allocate executable memory for the
|
||||||
|
compiler, even if it was because of a system security restriction.
|
||||||
.P
|
.P
|
||||||
There is a complete description of the PCRE2 native API in the
|
There is a complete description of the PCRE2 native API in the
|
||||||
.\" HREF
|
.\" HREF
|
||||||
|
|
Loading…
Reference in New Issue