summaryrefslogtreecommitdiffstats
path: root/runtime
Commit message (Collapse)AuthorAgeFilesLines
* added experimental pthread_yield()Rainer Gerhards2008-10-091-0/+5
| | | | | which so far seems to increase performance. There is also reason for it to do so, see http://kb.monitorware.com/post14216.html#p14216
* bumped interface version number to reflect change to message parsingRainer Gerhards2008-10-091-1/+4
|
* fixing segfault caused by all inputs but imudpRainer Gerhards2008-10-091-0/+1
|
* reordered imudp processing.Rainer Gerhards2008-10-087-8/+354
| | | | | | Message parsing is now done as part of main message queue worker processing (was part of the input thread) This should also improve performance, as potentially more work is done in parallel.
* restructured imudp receive loopRainer Gerhards2008-10-081-0/+1
| | | | | | | | cleaned up previous code and redid it in a way that makes it much easier to extend it also added a new macro DBGPRINTF which is a performance-optimzed version of dbgprintf
* cleanup of output timestamp generationRainer Gerhards2008-10-071-0/+4
|
* "output" timestamp now taken from mesg's time generatedRainer Gerhards2008-10-075-11/+29
| | | | | | | This enhances performance and, as some have pointed out, is probably also more consistent with what users expect how the various output-timestamp related function should work. This commit needs some more testing.
* slightly improved lock contention situation by moving out ofRainer Gerhards2008-10-071-3/+9
| | | | the critical section what could so with acceptable consequences
* added $UDPServerTimeRequery optionRainer Gerhards2008-10-062-16/+60
| | | | | | | ...which enables to work with less acurate timestamps in favor of performance. This enables querying of the time only every n-th time if imudp is running in the tight receive loop (aka receiving messsages at a high rate)
* Merge branch 'master' into perfRainer Gerhards2008-10-062-1/+10
|\ | | | | | | | | | | Conflicts: ChangeLog
| * Merge branch 'beta'Rainer Gerhards2008-10-021-1/+1
| |\
| | * bugfix: subseconds where not correctly extracted from a timestampRainer Gerhards2008-10-021-1/+1
| | | | | | | | | | | | | | | if that timestamp did not contain any subsecond information (the resulting string was garbagge but should have been "0", what it now is).
| * | consolidated time calls during msg object creationRainer Gerhards2008-10-021-0/+9
| | | | | | | | | | | | | | | | | | ...this improves performance and consistency and also fixes a bug where subsecond time properties generated by imfile, imklog and internal messages could be slightly inconsistent.
* | | Merge branch 'helgrind' into perfRainer Gerhards2008-10-026-14/+38
|\| |
| * | fixed git merge bug (duplicate code could not be detected)Rainer Gerhards2008-10-021-19/+0
| | |
| * | Merge branch 'master' into helgrindRainer Gerhards2008-10-021-0/+21
| |\ \
| | * | Merge branch 'beta'Rainer Gerhards2008-10-021-3/+24
| | |\|
| | | * Merge branch 'v3-stable' into betaRainer Gerhards2008-10-021-3/+24
| | | | | | | | | | | | | | | | | | | | | | | | Conflicts: runtime/net.c
| * | | removed no longer needed mutex callsRainer Gerhards2008-10-021-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | problem source is that getnameinfo() is not cancel-safe, not that it is not thread-safe. It is now guarded against cancellation.
| * | | bugfix: segfault when main queue was in direct modeRainer Gerhards2008-10-011-1/+1
| | | |
| * | | prevent getnameinfo() from being cancelledRainer Gerhards2008-09-301-2/+5
| | | | | | | | | | | | | | | | | | | | ... but removed the mutex, as the problem seems to be in cancel processing, so the mutex is no longer necessary
| * | | improved threadingRainer Gerhards2008-09-305-13/+35
| |/ / | | | | | | | | | | | | | | | | | | | | | - changed sequence when awakening thread - removed no longer needed condition variable - EXPERIMENTALLY added mutex guarding to hostname lookups this is to be removed if it does not have any verifyable useful effect
* | | Merge branch 'helgrind' into perfRainer Gerhards2008-09-262-8/+15
|\| |
| * | some more threading cleanupRainer Gerhards2008-09-262-8/+15
| | | | | | | | | | | | | | | | | | - removed newly-introduced potential deadlock in debug system - removed unnecessary pthread_cond_signal - a bit general cleanup
* | | Merge branch 'helgrind' into perfRainer Gerhards2008-09-264-135/+93
|\| | | | | | | | | | | | | | | | | Conflicts: runtime/debug.c
| * | fixed potential race condition on HUP and terminationRainer Gerhards2008-09-261-0/+2
| | |
| * | cleaned up internal debug system code and made it behave better in regard to ↵Rainer Gerhards2008-09-261-129/+79
| | | | | | | | | | | | multi-threading
| * | atomic memory access calls re-enabled in msg.cRainer Gerhards2008-09-231-5/+5
| | | | | | | | | | | | | | | | | | destructor not yet permitted because verification is missing that a atomic opration is sufficient for the job required
| * | bugfix: proper synchronization on message destructionRainer Gerhards2008-09-192-0/+5
| | | | | | | | | | | | | | | The code was potentially race, at least on systems where a memory barrier was needed. Fix not fully tested yet.
* | | Merge branch 'helgrind' into perfRainer Gerhards2008-09-184-16/+37
|\| | | | | | | | | | | | | | | | | Conflicts: ChangeLog
| * | bugfix: potential race condition when adding messages to queueRainer Gerhards2008-09-183-9/+14
| | | | | | | | | | | | | | | | | | | | | There was a wrong order of mutex lock operations. It is hard to believe that really caused problems, but in theory it could and with threading we often see that theory becomes practice if something is only used long enough on a fast enough machine with enough CPUs ;)
| * | re-enabled gcc builtin atomic operations and added a proper ./configure checkRainer Gerhards2008-09-181-9/+9
| | |
| * | ignoring an (acceptable) race in debug systemRainer Gerhards2008-09-181-0/+16
| | |
* | | minor things, mostly improved debug infoRainer Gerhards2008-09-184-5/+11
|/ /
* | performance optimization: unnecessary time() calls during message parsing ↵Rainer Gerhards2008-09-163-112/+161
| | | | | | | | | | | | removed thanks to David Lang for his excellent performance analysis
* | Merge branch 'beta'Rainer Gerhards2008-09-123-6/+23
|\| | | | | | | | | | | | | Conflicts: runtime/rsyslog.h tools/syslogd.c
| * fixed duplicate error numberRainer Gerhards2008-09-121-1/+1
| | | | | | | | | | This probably happened during a branch merge and was not detected. Fixed now, should not haved any harm.
| * Merge branch 'v3-stable' into betaRainer Gerhards2008-09-123-5/+22
| | | | | | | | | | | | | | Conflicts: runtime/datetime.h runtime/rsyslog.h
* | added properties "inputname" and "$myhostname"Rainer Gerhards2008-09-103-2/+42
| | | | | | | | | | | | | | | | - added message property "inputname", which contains the name of the input (module) that generated it. Presence is depending on suport in each input module (else it is blank). - added system property "$myhostname", which contains the name of the local host as it knows itself.
* | added new capability to property replacer.Zhuang Yuyao2008-09-101-0/+5
| | | | | | | | | | | | | | Multiple immediately successive field delimiters are treated as a single one. Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* | Merge branch 'beta'Rainer Gerhards2008-09-021-5/+5
|\| | | | | | | | | | | | | | | | | Conflicts: ChangeLog action.c configure.ac doc/manual.html
| * Merge branch 'v3-stable' into betaRainer Gerhards2008-09-021-5/+5
| | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
* | removed compile time fixed message size limit (was 2K)Rainer Gerhards2008-09-023-6/+11
| | | | | | | | | | The limit can now be set via $MaxMessageSize global config directive (finally gotten rid of MAXLINE ;))
* | some very minor cleanupRainer Gerhards2008-08-121-1/+0
| |
* | added testbed for config errors and fixed a bugRainer Gerhards2008-07-292-2/+11
| | | | | | | | | | | | - bugfix: no error was reported if the target of a $IncludeConfig could not be accessed. - added testbed for common config errors
* | enhanced configuration file error reporting and verificationRainer Gerhards2008-07-293-1/+38
| | | | | | | | | | | | | | | | | | | | | | | | - enhanced config file checking - no active actions are detected - added -N rsyslogd command line option for a config validation run (which does not execute actual syslogd code and does not interfere with a running instance) - somewhat improved emergency configuration. It is now also selected if the config contains no active actions - rsyslogd error messages are now reported to stderr by default. can be turned off by the new "$ErrorMessagesToStderr off" directive Thanks to HKS for suggesting these new features.
* | Merge branch 'beta'Rainer Gerhards2008-07-251-2/+2
|\|
| * Merge branch 'v3-stable' into betaRainer Gerhards2008-07-251-2/+2
| | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
* | Merge branch 'beta'Rainer Gerhards2008-07-181-0/+26
|\|
| * Merge branch 'v3-stable' into betaRainer Gerhards2008-07-181-0/+26
| | | | | | | | | | | | | | Conflicts: doc/property_replacer.html tools/syslogd.c