[pcre-dev] pcre2demo.c and licensing

2015-07-25 Thread Ze'ev Atlas
Hi PhilipWorking on pcre2demo.c, I've noticed that neither pcre2demo.c, nor pcredemo.c were specifically copyrighted.  Was that intentional? Thank you Ze'ev Atlas 201-801-0378 201-805-0286 (cell) -- ## List details at https://lists.exim.org/mailman/listinfo/pcre-dev

Re: [pcre-dev] Using JIT stacks for multiple patterns

2015-07-25 Thread Zoltán Herczeg
Hi Christoph, I'm having a single threaded application. How could it happen that patterns are not matched sequentially? AIUI, nested calls to pcre_exec() or pcre_jit_exec() would have to be made, which could only happen if this is done from a callback, such as the pcre_jit_callback passed to

[pcre-dev] Using JIT stacks for multiple patterns

2015-07-25 Thread Christoph Becker
Hi everybody! The manual states[1]: | You may safely use the same JIT stack for more than one pattern | (either by assigning directly or by callback), as long as the | patterns are all matched sequentially in the same thread. I'm having a single threaded application. How could it happen that