]> git.ipfire.org Git - thirdparty/squid.git/blame - src/DiskIO/Mmapped/MmappedIOStrategy.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / DiskIO / Mmapped / MmappedIOStrategy.cc
CommitLineData
e2851fe7 1/*
ef57eb7b 2 * Copyright (C) 1996-2016 The Squid Software Foundation and contributors
bbc27441
AJ
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
e2851fe7
AR
7 */
8
bbc27441
AJ
9/* DEBUG: section 47 Store Directory Routines */
10
f7f3304a 11#include "squid.h"
e2851fe7 12#include "MmappedFile.h"
9199139f 13#include "MmappedIOStrategy.h"
b6b42084 14#include "unlinkd.h"
9199139f 15
e2851fe7
AR
16bool
17MmappedIOStrategy::shedLoad()
18{
19 return false;
20}
21
22int
23MmappedIOStrategy::load()
24{
25 /* Return 999 (99.9%) constant load */
26 return 999;
27}
28
29DiskFile::Pointer
30MmappedIOStrategy::newFile (char const *path)
31{
32 return new MmappedFile (path);
33}
34
c521ad17
DK
35bool
36MmappedIOStrategy::unlinkdUseful() const
37{
38 return true;
39}
40
e2851fe7
AR
41void
42MmappedIOStrategy::unlinkFile(char const *path)
43{
e2851fe7 44 unlinkdUnlink(path);
e2851fe7 45}
f53969cc 46