summaryrefslogtreecommitdiffstats
path: root/runtime/debug.c
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'v4-devel'Rainer Gerhards2009-07-081-1/+3
|\ | | | | | | | | | | Conflicts: runtime/debug.h runtime/stream.c
| * fixed a bug introduced today that lead to an abort in queue disk modeRainer Gerhards2009-07-071-1/+1
| |
| * solved a race conditionRainer Gerhards2009-07-071-0/+2
| |
* | free last processed message in all casesRainer Gerhards2009-05-201-21/+30
| | | | | | | | | | | | | | | | | | so far, the last processed message was only freed when the next one was processed. This has been changed now. More precisely, a better algorithm has been selected for the queue worker process, which also involves less overhead than the previous one. The fix for "free last processed message" as then more or less a side-effect (easy to do) of the new algorithm.
* | moving to a cleaner implementation of batchesRainer Gerhards2009-05-121-5/+9
|/ | | | ... now that we know what we need from a theoretical POV.
* added O_CLOEXEC to open() callsRainer Gerhards2009-04-021-1/+1
| | | | | | | | to make sure only the minimum number of file handles is left open during a exec call. This is not a 100% solution, as there are also some fopen() calls and, more importantly, file descriptors opened by libraries. But it is better than nothing (and it was quick, at least until we run into platform hell, what we will for sure ;)).
* Merge branch 'dapatch'Rainer Gerhards2009-03-251-0/+69
|\
| * bugfix: potential abort with DA queue after high watermark is reachedRainer Gerhards2009-03-251-0/+69
| | | | | | | | | | | | There exists a race condition that can lead to a segfault. Thanks go to vbernetr, who performed the analysis and provided patch, which I only tweaked a very little bit.
* | resolved compile problem, e.g. on FreeBSDRainer Gerhards2008-12-081-2/+2
| | | | | | | | | | | | | | | | I commented out some debug code that is only useful in some testing scenarios and re-enabled the old code. This solved a FreeBSD compile issue. Also, I fixed some other syntax error, which somehow went into the tree (I am still puzzled about that, especially as some have already and successfully build from that tree... anyhow ;)).
* | Merge branch 'helgrind' into perfRainer Gerhards2008-09-261-2/+13
|\ \
| * | some more threading cleanupRainer Gerhards2008-09-261-2/+13
| | | | | | | | | | | | | | | | | | - removed newly-introduced potential deadlock in debug system - removed unnecessary pthread_cond_signal - a bit general cleanup
* | | Merge branch 'helgrind' into perfRainer Gerhards2008-09-261-130/+81
|\| | | | | | | | | | | | | | | | | Conflicts: runtime/debug.c
| * | cleaned up internal debug system code and made it behave better in regard to ↵Rainer Gerhards2008-09-261-129/+79
| | | | | | | | | | | | multi-threading
* | | Merge branch 'helgrind' into perfRainer Gerhards2008-09-181-0/+16
|\| | | | | | | | | | | | | | | | | Conflicts: ChangeLog
| * | ignoring an (acceptable) race in debug systemRainer Gerhards2008-09-181-0/+16
| |/
* / minor things, mostly improved debug infoRainer Gerhards2008-09-181-2/+4
|/
* disabled compile warnings caused by third-party librariesRainer Gerhards2008-06-231-0/+4
|
* fixed problem with module unload sequenceRainer Gerhards2008-04-291-2/+0
|
* moved files to the runtimeRainer Gerhards2008-04-161-0/+1332
there are still some files left which could go into the runtime, but I think we will delete most of them once we are done with the full modularization.