Displaying 4 results from an estimated 4 matches for "runfilt".
Did you mean:
runfile
2008 Jul 29
1
xapian-omega runfilter.cc patch
Hi,
The following patch for runfilter.cc is needed for building
xapian-omega on FreeBSD:
--- runfilter.cc.orig 2008-07-03 21:16:54.000000000 +0200
+++ runfilter.cc 2008-07-03 21:18:48.000000000 +0200
@@ -25,6 +25,7 @@
#include "safeerrno.h"
#include <sys/types.h>
#include <stdio.h>
+#include <signal.h>...
2019 Mar 21
2
[GSoC] Questions about project Text-Extraction Libraries
Hello!
I have a few question related to the project Text-Extraction Libraries.
Firstly, I think that trying to isolate library bugs in subprocesses could
get to work, but I am not sure about how to handle deadlocks or infinite
loops. I feel that using a timer is the only way to deal with it but I
would like to know what you think about it.
Secondly, I have been reading the source code of
2016 Sep 22
2
issues compiling omega
...it-self
-fvisibility=hidden
-I/home/John/xapian-core-1.4.0/include -g -O2 -std=gnu++11 -o
.libs/omindex.exe
omindex.o myhtmlparse.o htmlparse.o index_file.o mime.o common/getopt.o
commonhe
lp.o utils.o hashterm.o loadfile.o md5.o md5wrap.o xmlparse.o
metaxmlparse.o utf
8convert.o sample.o diritor.o runfilter.o freemem.o common/msvc_dirent.o
xpsxmlp
arse.o common/str.o pkglibbindir.o svgparse.o tmpdir.o urlencode.o
atomparse.o x
lsxparse.o opendocparse.o common/keyword.o msxmlparse.o common/safe.o
timegm.o d
atetime.o portability/mkdtemp.o -Wl,--enable-runtime-pseudo-reloc -lmagic
/home
/John/xapian-...
2019 Mar 23
2
[GSoC] Questions about project Text-Extraction Libraries
...ow what you think about it.
>
> There's already code to set a CPU time limit for filter subprocesses
> (using setrlimit()) and to implement an inactivity timeout (by using
> select() to wait for the connection file descriptor to become readable
> or a timeout to be reached) - see runfilter.cc. I think both mechanisms
> should be usable for this project (the CPU time limit would need to
> allow for CPU time used by the child process processing previous
> files).
>
> > Secondly, I have been reading the source code of ominex, but I cannot
> > figure out if it...