new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / external / pcre2-10.32 / doc / pcre2_jit_free_unused_memory.3
1 .TH PCRE2_JIT_FREE_UNUSED_MEMORY 3 "27 October 2014" "PCRE2 10.00"
2 .SH NAME
3 PCRE2 - Perl-compatible regular expressions (revised API)
4 .SH SYNOPSIS
5 .rs
6 .sp
7 .B #include <pcre2.h>
8 .PP
9 .nf
10 .B void pcre2_jit_free_unused_memory(pcre2_general_context *\fIgcontext\fP);
11 .fi
12 .
13 .SH DESCRIPTION
14 .rs
15 .sp
16 This function frees unused JIT executable memory. The argument is a general
17 context, for custom memory management, or NULL for standard memory management.
18 JIT memory allocation retains some memory in order to improve future JIT
19 compilation speed. In low memory conditions,
20 \fBpcre2_jit_free_unused_memory()\fB can be used to cause this memory to be
21 freed.
22 .P
23 There is a complete description of the PCRE2 native API in the
24 .\" HREF
25 \fBpcre2api\fP
26 .\"
27 page and a description of the POSIX API in the
28 .\" HREF
29 \fBpcre2posix\fP
30 .\"
31 page.