summaryrefslogtreecommitdiffstats
path: root/vespalog/src
Commit message (Collapse)AuthorAgeFilesLines
* Remove fastos as runtime dependencyHenning Baldersheim2017-11-024-7/+8
|
* Use std::mutex instead of FastOS_Mutex in slobrok and vespalog modules.Tor Egge2017-10-271-10/+6
|
* Code santize based on intellij`s advise. NULL -> nullptr, 0 -> false, dead ↵Henning Baldersheim2017-10-123-43/+24
| | | | code elimination.
* Add -Wformat-securityHenning Baldersheim2017-10-125-9/+8
|
* add robustnessArne Juul2017-09-211-11/+26
| | | | | | * if the machine / container was stopped abruptly, leaving pidfile laying around, this could cause problems at next startup if the pid was reused. Use advisory locks and also check for our own pid.
* Filter on correct package prefix for CuratorHarald Musum2017-09-1721-23/+23
|
* Nonfunctional changes onlyJon Bratseth2017-09-131-2/+2
|
* use Defaults::vespaHostnameArne Juul2017-09-082-8/+4
|
* use Defaults.vespaHostnameArne Juul2017-09-081-21/+2
|
* Remove more clutter in fastos/types.hHenning Baldersheim2017-08-185-4/+5
|
* Include only what you need.Henning Baldersheim2017-08-183-0/+12
|
* Merge pull request #1980 from ↵Harald Musum2017-07-271-7/+0
|\ | | | | | | | | yahoo/revert-1943-hmusum/temporary-fix-for-jetty-logging-issue Revert "Temporary fix to avoid logcontrol file grow without limits"
| * Revert "Temporary fix to avoid logcontrol file grow without limits"Harald Musum2017-03-081-7/+0
| |
* | Use syntax that works for both gcc 7 and gcc 6.Henning Baldersheim2017-07-241-2/+2
| |
* | Add [[falltrhough]] for gcc 7Henning Baldersheim2017-07-241-1/+2
| |
* | Use locale insensitive strtod and strtof.Henning Baldersheim2017-06-191-7/+3
| |
* | VESPA_HOME should not end with / anymoreArne H Juul2017-06-171-1/+0
| | | | | | | | | | * best practice for HOME-like env vars is to be just the name of the directory without trailing slash.
* | Update copyright headersJon Bratseth2017-06-14112-109/+112
| |
* | Revert "Update copyright headers"Jon Bratseth2017-06-14112-112/+109
| |
* | Fix comment prefixJon Bratseth2017-06-141-1/+1
| |
* | Update copyright headersJon Bratseth2017-06-14112-109/+112
| |
* | Revert "Copyright header"Jon Bratseth2017-06-13112-113/+109
| |
* | Merge with masterJon Bratseth2017-06-131-3/+0
|\ \
| * | Split out the explicit compressors.Henning Baldersheim2017-06-121-3/+0
| | |
* | | Copyright headerJon Bratseth2017-06-13112-109/+113
|/ /
* | Merge branch 'master' into balder/decouple-datatype-and-fiedlvalue-some-moreHenning Baldersheim2017-06-079-15/+17
|\ \
| * | Rename vespalog binaries to have vespa- prefix.Tor Egge2017-06-079-15/+15
| | | | | | | | | | | | Temporarily add symlinks from old name to new name.
* | | split log and bufferedlogHenning Baldersheim2017-06-078-25/+9
| | |
* | | Do not provide unnecessary fastos/mutex.h by default.Henning Baldersheim2017-06-075-29/+16
|/ /
* | Forward declare ByteBuffer and FastOS_ThreadHenning Baldersheim2017-06-061-1/+1
| |
* | Reduce fastos.h dependency.Henning Baldersheim2017-06-011-1/+1
| |
* | must check variable inside synchronized regionArne H Juul2017-05-301-0/+3
| |
* | misc cleanup from BaldersheimArne H Juul2017-05-022-11/+5
| | | | | | | | | | | | | | * include file cleanup * only do LOG_SETUP as needed * remove "virtual" where "override" is specified also * some minor reformatting and indentation changes
* | Remove temporary codeJon Bratseth2017-04-261-2/+1
| |
* | Add /nodes/v2/maintenanceJon Bratseth2017-04-251-1/+34
| |
* | Revert "Balder/enforce override 2"Arne H Juul2017-04-242-5/+11
| |
* | Use overrideHenning Baldersheim2017-04-232-11/+5
| |
* | add override in vespalog moduleArne H Juul2017-04-102-4/+4
| |
* | Use overrideHenning Baldersheim2017-04-043-10/+7
| |
* | Specify destructors explicit to control inlining.Henning Baldersheim2017-03-081-0/+3
|/ | | | | Conflicts: build_settings.cmake
* Temporary fix to avoid logcontrol file grow without limitsHarald Musum2017-03-061-0/+7
|
* Optimize includes.Henning Baldersheim2017-02-062-20/+5
|
* Do not include fastos.h in header files.Henning Baldersheim2016-12-191-1/+0
|
* fix bug found in reviewArne H Juul2016-11-141-2/+3
|
* avoid possible memory overrun in strchr()Arne H Juul2016-11-112-4/+18
| | | | | | | | * add a loop to look for newlines that takes the known file size into account so we don't risk accessing outside the valid mapped area. * also, add a log warning (acting as explanation for this-should-not-happen handling code).
* ensure returned Component refers to valid memoryArne H Juul2016-11-113-6/+18
| | | | | | * we have seen some core dumps in logctl when using the mmap'ed levels inside a Component. Add extra checks to ensure we stay inside the actual file.
* Name dependencies for script tests.Arnstein Ressem2016-08-241-2/+4
|
* Aressem/cmake more out of source tests (#441)Arnstein Ressem2016-08-231-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * vespalib tests run out of source. * staging_vespalib run tests out of source. * fastos tests run out of source. * Fixed storage tests out of source. * Fixed some of the config tests. * config* tests run out of source. * document_* tests run out of source. * documentapi_ tests run out of source. * Fixed fsa out of source tests. * Fix jrt_test out of source. * More tests run out of source. * Fix some slobrok and messagebus tests. * More fixes for out of source tests. * Done with first pass of regular tests out of source. * Only use SOURCE_DIRECTORY in a limited set of places. * Fix some remaining tests. * Some cleanups. * No need for extra slash.
* avoid "unused result" warningsArne H. Juul2016-07-021-3/+13
|
* Fail test scripts on first error (#194)Vegard Sjonfjell2016-06-282-0/+2
| | | | | | | | | | | | | | | | * Fail test scripts on first error * Some more test fixes * Reverted prod_features_test fix * Re-added prod_features_test.sh change matching that of PR #193 * More error checking * Reverted set -e on failing tests * Enable errexit in lowercasing test