Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | optimization: propert names are now internally identified by integers | Rainer Gerhards | 2009-06-26 | 7 | -137/+296 |
| | |||||
* | some optimization, declared some frequently called small stringbuf functions ↵ | Rainer Gerhards | 2009-06-26 | 2 | -60/+62 |
| | | | | inline | ||||
* | got rid of the recursive requirement for msg_t mutex (finally!) | Rainer Gerhards | 2009-06-26 | 5 | -168/+121 |
| | |||||
* | some more stringbuffer optimization | Rainer Gerhards | 2009-06-25 | 3 | -68/+30 |
| | |||||
* | bugfix: msg_t mutex was sometimes initialized twice | Rainer Gerhards | 2009-06-25 | 1 | -1/+0 |
| | |||||
* | backported "clean" increment of memory trim counter (not protected by mutex) | Rainer Gerhards | 2009-06-25 | 2 | -3/+6 |
| | |||||
* | named queue worker threads | Rainer Gerhards | 2009-06-25 | 1 | -0/+6 |
| | | | | ... but I don't see the name anywhere...? | ||||
* | cleanup (removed now-unused parameters) | Rainer Gerhards | 2009-06-25 | 3 | -17/+17 |
| | |||||
* | bugfix: subtle potential issue during queue shutdown | Rainer Gerhards | 2009-06-25 | 1 | -1/+1 |
| | | | | | ... this one could cause trouble, but I really don't think it caused any actual harm. | ||||
* | improvements/fixes in queue termination timeout handling | Rainer Gerhards | 2009-06-25 | 2 | -3/+7 |
| | | | | | | | | - bugfix: subtle (and usually irrelevant) issue in timout processing timeout could be one second too early if nanoseconds wrapped - set a more sensible timeout for shutdow, now 1.5 seconds to complete processing (this also removes those cases where the shutdown message was not written because the termination happened before it) | ||||
* | some memory accesses are now explicitely atomic | Rainer Gerhards | 2009-06-25 | 3 | -10/+24 |
| | | | | | ... as far as I think this mostly is to keep the thread debuggers happy | ||||
* | Merge branch 'beta' | Rainer Gerhards | 2009-06-24 | 1 | -0/+2 |
|\ | |||||
| * | Merge branch 'v4-stable' into beta | Rainer Gerhards | 2009-06-24 | 1 | -0/+2 |
| |\ | |||||
| | * | Merge branch 'v3-stable' into v4-stable | Rainer Gerhards | 2009-06-24 | 1 | -0/+2 |
| | |\ | |||||
| | | * | bugfix: invalid mutex release in msg.c | Rainer Gerhards | 2009-06-24 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | Detected under threading debugger, seems not to have any impact on actual deployments. | ||||
* | | | | optimized TAG handling | Rainer Gerhards | 2009-06-23 | 3 | -55/+40 |
| | | | | |||||
* | | | | optimized hostname processing | Rainer Gerhards | 2009-06-23 | 3 | -11/+7 |
| | | | | |||||
* | | | | more strict parsing of the hostname in rfc3164 mode | Rainer Gerhards | 2009-06-23 | 2 | -5/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ... hopefully removes false positives (but may cause some trouble with hostname parsing). For details, see this bug tracker: http://bugzilla.adiscon.com/show_bug.cgi?id=126 This patch is not optimal for v4 - another one will follow. The spirit of this commit is to enable easier backporting if someone is interested in doing so. | ||||
* | | | | prevented unneccessary apc calls | Rainer Gerhards | 2009-06-23 | 3 | -9/+18 |
| | | | | |||||
* | | | | restored repeated message reduction processing | Rainer Gerhards | 2009-06-23 | 4 | -25/+60 |
| | | | | |||||
* | | | | fix: previous patch aborted in release mode | Rainer Gerhards | 2009-06-23 | 1 | -1/+3 |
| | | | | |||||
* | | | | some more optimizations | Rainer Gerhards | 2009-06-23 | 5 | -19/+70 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | - done malloc() instead of calloc() for msg_t, as we have large space which needs not be initialized - shrunk syslogTime structure in the hope to get better cache and write performance (non-aligned data should not hurt much here) | ||||
* | | | | optimized processing of TAG message field | Rainer Gerhards | 2009-06-22 | 3 | -22/+7 |
| | | | | |||||
* | | | | some more optimizations of the msg_t object (minor) | Rainer Gerhards | 2009-06-22 | 4 | -45/+40 |
| | | | | |||||
* | | | | reduced memory footprint / "memory leak" | Rainer Gerhards | 2009-06-22 | 1 | -0/+18 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Testing has shown that at least the glibc malloc() subsystem returns memory to the OS far too late in our case. So we need to help it a bit, by calling malloc_trim(), which will tell the alloc subsystem to consolidate and return to the OS. | ||||
* | | | | optimized template string generation | Rainer Gerhards | 2009-06-19 | 3 | -8/+5 |
| | | | | |||||
* | | | | removed pthread_testcancel() as it is no longer necessary | Rainer Gerhards | 2009-06-19 | 1 | -22/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | we usually stay long enough inside the actions, so there should be no problem with reaching a cancellation point. Actually, if we really need to cancel, the thread is in an output action (otherwise it would have willingly terminated). | ||||
* | | | | removed uniprocessor optimization | Rainer Gerhards | 2009-06-19 | 6 | -40/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | ... as it was not even optimal on uniprocessors any longer ;) I keep the config directive in, maybe we can utilize it again at some later point in time (questionable). | ||||
* | | | | typo fix | Rainer Gerhards | 2009-06-19 | 1 | -1/+1 |
| | | | | |||||
* | | | | some cleanup | Rainer Gerhards | 2009-06-19 | 1 | -11/+6 |
| | | | | |||||
* | | | | fully optimized datetime module and enhanced test suite | Rainer Gerhards | 2009-06-19 | 1 | -78/+88 |
| | | | | | | | | | | | | | | | | tests for the various timestamp formats have been added | ||||
* | | | | optimized rfc3339 timestamp string generation | Rainer Gerhards | 2009-06-19 | 1 | -30/+73 |
| | | | | |||||
* | | | | fixed abort condition with oversize tags | Rainer Gerhards | 2009-06-18 | 2 | -23/+11 |
| | | | | | | | | | | | | | | | | this was a regression I introduced this afternoon | ||||
* | | | | optimized handling of MSG part in msg object | Rainer Gerhards | 2009-06-18 | 2 | -11/+24 |
| | | | | | | | | | | | | | | | | | | | | WARNING: currently, message repeation processing is disabled, must be reenabled (but prefer to do some other tests first) | ||||
* | | | | slight optimization of template generation | Rainer Gerhards | 2009-06-18 | 3 | -4/+12 |
| | | | | |||||
* | | | | some optimization in the property replacer | Rainer Gerhards | 2009-06-18 | 1 | -40/+48 |
| | | | | |||||
* | | | | optimized TAG handling in msg object | Rainer Gerhards | 2009-06-18 | 2 | -47/+78 |
| | | | | |||||
* | | | | cleaned up/optimized raw message handling in msg object | Rainer Gerhards | 2009-06-18 | 3 | -65/+64 |
| | | | | |||||
* | | | | Merge branch 'master' into newmsg | Rainer Gerhards | 2009-06-18 | 1 | -1/+1 |
|\| | | | | | | | | | | | | | | | | | | | Conflicts: tools/omfile.c | ||||
| * | | | Merge branch 'beta' | Rainer Gerhards | 2009-06-18 | 1 | -1/+1 |
| |\| | | |||||
| | * | | Merge branch 'v3-stable' into beta | Rainer Gerhards | 2009-06-18 | 1 | -1/+1 |
| | |\| | |||||
| | | * | some minor bugfixes | Rainer Gerhards | 2009-06-18 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - bugfix: invalid error message issued if $inlcudeConfig was on an empty set of files (e.g. *.conf, where none such files existed) thanks to Michael Biebl for reporting this bug - bugfix: when run in foreground (but not in debug mode), a debug message ("DoDie called") was emitted at shutdown. Removed. thanks to Michael Biebl for reporting this bug - bugfix: some garbagge was emitted to stderr on shutdown. This garbage consisted of file names, which were written during startup (key point: not a pointer error) thanks to Michael Biebl for reporting this bug - bugfix: startup and shutdown message were emitted to stdout thanks to Michael Biebl for reporting this bug | ||||
* | | | | going forward in moving string-handling functions to new interface... | Rainer Gerhards | 2009-06-17 | 10 | -94/+113 |
| | | | | |||||
* | | | | some more optimization in msg object string handling | Rainer Gerhards | 2009-06-17 | 2 | -56/+35 |
| | | | | |||||
* | | | | further optimized message object | Rainer Gerhards | 2009-06-17 | 4 | -136/+233 |
| | | | | | | | | | | | | | | | | pri, facility and severity string generation simplified | ||||
* | | | | added basic plumbing to support message properties separate from message | Rainer Gerhards | 2009-06-16 | 4 | -0/+175 |
| | | | | | | | | | | | | | | | | | | | | will fill this with live somewhat later, noticed I need to do some stage work first (at least this is useful). | ||||
* | | | | some cleanup | Rainer Gerhards | 2009-06-16 | 1 | -6/+4 |
| | | | | |||||
* | | | | implemented first version of multi-enqueue support, queue side | Rainer Gerhards | 2009-06-16 | 1 | -0/+126 |
| | | | | |||||
* | | | | milestone: input-side multiSubmit capability | Rainer Gerhards | 2009-06-16 | 2 | -1/+14 |
| | | | | | | | | | | | | | | | | ... commit before I try to touch the queue side ;) | ||||
* | | | | minor cleanup | Rainer Gerhards | 2009-06-16 | 1 | -1/+0 |
| | | | |