aboutsummaryrefslogtreecommitdiffstats
path: root/fastos
Commit message (Collapse)AuthorAgeFilesLines
* Remove or update outdated copyright noticesTor Brede Vekterli2017-09-201-9/+2
|
* Remove some includes not needed.Henning Baldersheim2017-08-186-24/+3
|
* Fix up @vekterli's comments.Henning Baldersheim2017-08-181-5/+0
|
* NULL -> nullptrHenning Baldersheim2017-08-1847-356/+356
|
* Remove more clutter in fastos/types.hHenning Baldersheim2017-08-1817-162/+65
|
* Add missing file.Henning Baldersheim2017-08-181-0/+26
|
* Include only what you need.Henning Baldersheim2017-08-1833-269/+244
|
* Avoid opening idxfile to early for writing. Especially as it might get ↵Henning Baldersheim2017-08-081-0/+2
| | | | | | truncated due to error handling later on. Instead just open the file when you need to write it. It does not happen that often to warrant keeping it open all the time.
* add minimal README filesArne H Juul2017-06-191-0/+4
|
* Update copyright headersJon Bratseth2017-06-1473-73/+73
|
* Revert "Update copyright headers"Jon Bratseth2017-06-1473-73/+73
|
* Update copyright headersJon Bratseth2017-06-1473-73/+73
|
* Revert "Copyright header"Jon Bratseth2017-06-1373-73/+73
|
* Copyright headerJon Bratseth2017-06-1373-73/+73
|
* Hide BucketDistributionHenning Baldersheim2017-06-073-16/+14
|
* Forward declare ByteBuffer and FastOS_ThreadHenning Baldersheim2017-06-063-2/+3
|
* And there she goes...Henning Baldersheim2017-06-011-27/+0
|
* Checkpount for removing fastos from testsHenning Baldersheim2017-06-015-6/+6
|
* DeinlineHenning Baldersheim2017-05-061-0/+1
|
* ISO C++1z does not allow ‘register’ storage class specifier (gcc 7)Henning Baldersheim2017-05-051-9/+4
|
* Fix warnings hidden earlier due to including application headers as system ↵Henning Baldersheim2017-05-023-15/+12
| | | | includes
* Remove unused include.Henning Baldersheim2017-04-241-1/+0
|
* Do not enforce sync unless requested.Henning Baldersheim2017-04-241-1/+1
|
* remove FastOS_Socket::getHostNameHaavard2017-04-193-98/+1
|
* Use overrideHenning Baldersheim2017-04-0426-129/+103
|
* Implement a default destructor to avoid the automatic inlining of large ↵Henning Baldersheim2017-03-081-0/+6
| | | | destructors.
* Optimize includes.Henning Baldersheim2017-02-061-2/+2
|
* Targeted includeHenning Baldersheim2016-12-211-2/+1
|
* Followup comments frpm @vekterli.Henning Baldersheim2016-12-211-4/+4
|
* Less us not overdo the casting ...Henning Baldersheim2016-12-191-4/+4
|
* - If hugetlb is not working try without.Henning Baldersheim2016-12-192-22/+30
| | | | - NULL -> nullptr
* do not try to adjust socket buffersHaavard2016-11-292-8/+0
|
* Only name source once. Fix compile errors.Arnstein Ressem2016-11-021-21/+9
|
* Only require fastos where you actually use it and link staticallyHenning Baldersheim2016-11-021-0/+27
|
* We only need one vtagHenning Baldersheim2016-10-213-39/+0
|
* Follow up from @toregge's comments.Henning Baldersheim2016-09-151-3/+3
|
* Honour the chunking during all use of the interface.Henning Baldersheim2016-09-154-10/+20
|
* Remove all usage of boost::noncopyable.Henning Baldersheim2016-09-141-4/+2
|
* Get the parenthesis correct.Henning Baldersheim2016-08-291-1/+1
|
* Avoid out of bounds errorHenning Baldersheim2016-08-291-1/+1
|
* Aressem/cmake more out of source tests (#441)Arnstein Ressem2016-08-231-20/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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.
* Also take padAfter into account.Henning Baldersheim2016-07-081-8/+12
|
* Update comment and remove unnecessary ;Henning Baldersheim2016-07-082-1/+2
|
* Cast it to get correct signedness.Henning Baldersheim2016-07-081-1/+1
|
* Unify code, no semantic changes.Henning Baldersheim2016-07-085-116/+70
|
* Correct the cachedSizeHenning Baldersheim2016-07-081-0/+4
|
* Unify code, no semantic changes.Henning Baldersheim2016-07-084-189/+93
|
* Add missing semicolonHenning Baldersheim2016-07-081-1/+1
|
* When using big indexes it seems like the memory used by the oldindex that ↵Henning Baldersheim2016-07-081-0/+1
| | | | | | | | | | | | | was mapped in are still lying around in the buffercache. These is troublsome for linux memory management. So we tell them explicit that we do not need it anymore. We already do that in FileUtil::LoadedMmap::~LoadedMmap() { madvise(_mapBuffer, _mapSize, MADV_DONTNEED); munmap(_mapBuffer, _mapSize); }
* avoid "unused result" warningsArne H. Juul2016-07-021-3/+9
|