<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rsyslog.git/plugins/immark, branch v3.19.2</title>
<subtitle>rsyslog development for Lumberjack - various unofficial and potentially rebased branches</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mitr/public_git/rsyslog.git/'/>
<entry>
<title>completed better modularity of runtime</title>
<updated>2008-04-17T10:46:57+00:00</updated>
<author>
<name>Rainer Gerhards</name>
<email>rgerhards@adiscon.com</email>
</author>
<published>2008-04-17T10:46:57+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mitr/public_git/rsyslog.git/commit/?id=60309004dfc57c3243abb2f01042950201596773'/>
<id>60309004dfc57c3243abb2f01042950201596773</id>
<content type='text'>
- added the ability to specify an error log function for the
  runtime
- removed dependency of core runtime on dirty.h

Note that it is "better" modularity, not perfect. There is still
work to do, but I think we can for the time being proceed with
other things.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- added the ability to specify an error log function for the
  runtime
- removed dependency of core runtime on dirty.h

Note that it is "better" modularity, not perfect. There is still
work to do, but I think we can for the time being proceed with
other things.
</pre>
</div>
</content>
</entry>
<entry>
<title>some more cleanup</title>
<updated>2008-04-16T13:27:53+00:00</updated>
<author>
<name>Rainer Gerhards</name>
<email>rgerhards@adiscon.com</email>
</author>
<published>2008-04-16T13:27:53+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mitr/public_git/rsyslog.git/commit/?id=d9b0c77d3e719d4c08361e62f3b067228c30f6a9'/>
<id>d9b0c77d3e719d4c08361e62f3b067228c30f6a9</id>
<content type='text'>
reduced dependencies, moved non-runtime files to its own directory except
for some whom's status is unclear
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
reduced dependencies, moved non-runtime files to its own directory except
for some whom's status is unclear
</pre>
</div>
</content>
</entry>
<entry>
<title>made everything compile with the new runtime subdirectory</title>
<updated>2008-04-16T06:42:00+00:00</updated>
<author>
<name>Rainer Gerhards</name>
<email>rgerhards@adiscon.com</email>
</author>
<published>2008-04-16T06:42:00+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mitr/public_git/rsyslog.git/commit/?id=d7f33053da7eb73a8c475956af6e3847e596c80a'/>
<id>d7f33053da7eb73a8c475956af6e3847e596c80a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>begin building runtime convenience library (does not build!)</title>
<updated>2008-04-15T14:28:44+00:00</updated>
<author>
<name>Rainer Gerhards</name>
<email>rgerhards@adiscon.com</email>
</author>
<published>2008-04-15T14:28:44+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mitr/public_git/rsyslog.git/commit/?id=4226f0dd4813277819406a4f13b460195d798f1a'/>
<id>4226f0dd4813277819406a4f13b460195d798f1a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>applied patch from Michael Biebl to clean up build system</title>
<updated>2008-03-06T07:39:32+00:00</updated>
<author>
<name>Rainer Gerhards</name>
<email>rgerhards@adiscon.com</email>
</author>
<published>2008-03-06T07:39:32+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mitr/public_git/rsyslog.git/commit/?id=28dcc746bd463541a48bad64a37039658f1aa3f7'/>
<id>28dcc746bd463541a48bad64a37039658f1aa3f7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- changed modules.c calling conventions to be interface-based</title>
<updated>2008-03-05T10:30:06+00:00</updated>
<author>
<name>Rainer Gerhards</name>
<email>rgerhards@adiscon.com</email>
</author>
<published>2008-03-05T10:30:06+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mitr/public_git/rsyslog.git/commit/?id=545346e697fe930b8b7b9bd0ede47890b26a4832'/>
<id>545346e697fe930b8b7b9bd0ede47890b26a4832</id>
<content type='text'>
- moved module loader from conf.c to module.c, where it belongs
- made the necessary plumbing to auto-load library modules
- upgraded debug system to include iRet in function exit message
- changed module interface so that instances need only to be supported by
    output plugins (if we actually need them for input plugins, we can
    always add it again...)
- milestone: first implementation of library modules (but do not get
    unloaded on exit/hup so far)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- moved module loader from conf.c to module.c, where it belongs
- made the necessary plumbing to auto-load library modules
- upgraded debug system to include iRet in function exit message
- changed module interface so that instances need only to be supported by
    output plugins (if we actually need them for input plugins, we can
    always add it again...)
- milestone: first implementation of library modules (but do not get
    unloaded on exit/hup so far)
</pre>
</div>
</content>
</entry>
<entry>
<title>- changed module interface to support querying obj interface (stage work)</title>
<updated>2008-03-04T10:27:45+00:00</updated>
<author>
<name>Rainer Gerhards</name>
<email>rgerhards@adiscon.com</email>
</author>
<published>2008-03-04T10:27:45+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mitr/public_git/rsyslog.git/commit/?id=bc7d8ccebb0a9e7726a9c85cb10746d7407c28d8'/>
<id>bc7d8ccebb0a9e7726a9c85cb10746d7407c28d8</id>
<content type='text'>
- changed module interface version, as the interface change is quite large
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- changed module interface version, as the interface change is quite large
</pre>
</div>
</content>
</entry>
<entry>
<title>fixed issue left over from debuging :(</title>
<updated>2008-02-01T17:50:05+00:00</updated>
<author>
<name>Rainer Gerhards</name>
<email>rgerhards@adiscon.com</email>
</author>
<published>2008-02-01T17:50:05+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mitr/public_git/rsyslog.git/commit/?id=4e7e3efc6955c426866b231f187bebb7b9b64111'/>
<id>4e7e3efc6955c426866b231f187bebb7b9b64111</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- some cleanup</title>
<updated>2008-01-10T17:33:21+00:00</updated>
<author>
<name>Rainer Gerhards</name>
<email>rgerhards@adiscon.com</email>
</author>
<published>2008-01-10T17:33:21+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mitr/public_git/rsyslog.git/commit/?id=68efb41220a834870681f293481655ed47e7b197'/>
<id>68efb41220a834870681f293481655ed47e7b197</id>
<content type='text'>
- implemented management function for worker thread 0 in order to change
    queue workers dynamically -- stage work
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- implemented management function for worker thread 0 in order to change
    queue workers dynamically -- stage work
</pre>
</div>
</content>
</entry>
<entry>
<title>- fixed a bug that caused a segfault on startup when no $WorkDir directive</title>
<updated>2008-01-10T14:27:26+00:00</updated>
<author>
<name>Rainer Gerhards</name>
<email>rgerhards@adiscon.com</email>
</author>
<published>2008-01-10T14:27:26+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mitr/public_git/rsyslog.git/commit/?id=28c44e9a7bf4f99279af94a96bac42d0379b27d0'/>
<id>28c44e9a7bf4f99279af94a96bac42d0379b27d0</id>
<content type='text'>
    was specified in rsyslog.conf
- fixed a bug that caused a segfault on queues with types other than "disk"
- removed the now longer needed thread TermSyncTool
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
    was specified in rsyslog.conf
- fixed a bug that caused a segfault on queues with types other than "disk"
- removed the now longer needed thread TermSyncTool
</pre>
</div>
</content>
</entry>
</feed>
