Annotation of embedaddon/pcre/doc/html/pcre_jit_stack_alloc.html, revision 1.1
1.1 ! misho 1: <html>
! 2: <head>
! 3: <title>pcre_jit_stack_alloc specification</title>
! 4: </head>
! 5: <body bgcolor="#FFFFFF" text="#00005A" link="#0066FF" alink="#3399FF" vlink="#2222BB">
! 6: <h1>pcre_jit_stack_alloc man page</h1>
! 7: <p>
! 8: Return to the <a href="index.html">PCRE index page</a>.
! 9: </p>
! 10: <p>
! 11: This page is part of the PCRE HTML documentation. It was generated automatically
! 12: from the original man page. If there is any nonsense in it, please consult the
! 13: man page, in case the conversion went wrong.
! 14: <br>
! 15: <br><b>
! 16: SYNOPSIS
! 17: </b><br>
! 18: <P>
! 19: <b>#include <pcre.h></b>
! 20: </P>
! 21: <P>
! 22: <b>pcre_jit_stack *pcre_jit_stack_alloc(int <i>startsize</i>,</b>
! 23: <b>int <i>maxsize</i>);</b>
! 24: </P>
! 25: <br><b>
! 26: DESCRIPTION
! 27: </b><br>
! 28: <P>
! 29: This function is used to create a stack for use by the code compiled by the JIT
! 30: optimization of <b>pcre_study()</b>. The arguments are a starting size for the
! 31: stack, and a maximum size to which it is allowed to grow. The result can be
! 32: passed to the JIT runtime code by <b>pcre_assign_jit_stack()</b>, or that
! 33: function can set up a callback for obtaining a stack. A maximum stack size of
! 34: 512K to 1M should be more than enough for any pattern. For more details, see
! 35: the
! 36: <a href="pcrejit.html"><b>pcrejit</b></a>
! 37: page.
! 38: </P>
! 39: <P>
! 40: There is a complete description of the PCRE native API in the
! 41: <a href="pcreapi.html"><b>pcreapi</b></a>
! 42: page and a description of the POSIX API in the
! 43: <a href="pcreposix.html"><b>pcreposix</b></a>
! 44: page.
! 45: <p>
! 46: Return to the <a href="index.html">PCRE index page</a>.
! 47: </p>
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>