Balazs Scheidler
Balazs Scheidler
This is a request-for-comments PR against iv_work to allow the submission of tasks from a worker thread and not just from the thread that owns the iv_work pool.
In syslog-ng, our main thread polls various sources and whenever there's a new I/O event, it submits this as work to a set of worker threads, an iv_work_pool instance. This...
I've recently upgraded my system to Ubuntu zesty, and my parametrized tests fail with a segfault. It seems that the parameters I receive get a corrupted pointer, at least if...
This patch adds a feature to control the internal verbosity of syslog-ng (e.g. verbose, debug, trace) via the configuration file. Example: ``` options { log-level(debug); }; ``` Possible values for...
This change would collect test binaries along with core files, should the test fail. This allows me to analyse core files from test programs and avoids the roundtrip of reproducing...
This branch contains the last iteration of typing support, namely type aware comparisons. At this point, it depends all the previous portions of my typing tree, some of which are...
This branch implements === and !== operators to verify type AND value at the same time, similarly to the same-named JavaScript operators. Question: is it a good idea to have...
This PR changes the riemann driver to use GenericNumber and its associated number parsing functions, instead of using using strtoll() without error handling. This is not really a functional change,...
This branch changes the basicfuncs/num-funcs.c plugin to use the new GenericNumber implementation instead its own local implementation for Numbers.
There are two forms of the if expression currently. The simpler one that uses a filter expression in brackets, followed by the processing elements that get applied if the filter...