Displaying 5 results from an estimated 5 matches for "reg_nosub".
2010 Apr 27
1
include insmod patch
Am I wrong saying that actually anyone that use klibc has to use insmod
patch or build a monolithic kernel?
Could not the insmod patch be include?
That will make everyone life easier on klibc upgrade.
Gilles
2011 Nov 22
2
sip show peers
Is there a way with the command (1.4.42) for sip show peers to
see the FULL "Name/Username" field???
I have long names and mine are being truncated.
Thanks
Jerry
2015 Nov 28
0
[patch] Use JIT for PCRE pattern matching
...CRE pattern study error\n\t'%s'\n"), errorptr);
- }
}
+ if (n > 10) {
+ re_pe = pcre_study(re_pcre, PCRE_STUDY_JIT_COMPILE, &errorptr);
+ if (errorptr)
+ warning(_("PCRE pattern study error\n\t'%s'\n"), errorptr);
+ }
} else {
int cflags = REG_NOSUB | REG_EXTENDED;
if (igcase_opt) cflags |= REG_ICASE;
@@ -929,7 +937,11 @@
if (fixed_opt);
else if (perl_opt) {
+#ifdef PCRE_CONFIG_JIT
+ if (re_pe) pcre_free_study(re_pe);
+#else
if (re_pe) pcre_free(re_pe);
+#endif
pcre_free(re_pcre);
pcre_free((void *)tables);
} else
@@ -...
2002 Nov 11
0
Regular Expression support
...D;
+ if(strchr(optionsString,'i')) options += REG_ICASE;
+ if(strchr(optionsString,'m')) options += REG_NEWLINE; // This option is not usefull when matching strings without any newlines
+ if(strchr(optionsString,'s')) options += REG_NOSUB; // This option is not usefull when matching strings without any newlines
+ }
+ }else{
+ modifiedPattern=strdup(pattern);
+ if(!modifiedPattern) out_of_memory("check_one_exclude");
+ }
+ rprintf(FINFO, "Regul...
2013 Jul 15
21
[PATCH 00 of 21 RESEND] blktap3/drivers: Introduce tapdisk server.
This patch series copies the core of the tapdisk process from blktap2, with
updates coming from blktap2.5.
Signed-off-by: Thanos Makatos <thanos.makatos@citrix.com>