BBlockCache: Rewrite header for style.

This commit is contained in:
Augustin Cavalier
2026-03-02 18:01:56 -05:00
parent 65fdc967c8
commit 184b57aa71
+14 -32
View File
@@ -1,54 +1,36 @@
/* /*
* Copyright (c) 2003 Marcus Overhagen * Copyright 2026, Haiku, Inc. All rights reserved.
* * Distributed under the terms of the MIT License.
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/ */
#ifndef _BLOCK_CACHE_H #ifndef _BLOCK_CACHE_H
#define _BLOCK_CACHE_H #define _BLOCK_CACHE_H
#include <BeBuild.h>
#include <Locker.h> #include <Locker.h>
// The allocation type to be used in the constructor
enum { enum {
B_OBJECT_CACHE = 0, B_OBJECT_CACHE = 0,
B_MALLOC_CACHE = 1 B_MALLOC_CACHE = 1
}; };
class BBlockCache { class BBlockCache {
public: public:
BBlockCache(uint32 blockCount, size_t blockSize, BBlockCache(uint32 blockCount, size_t blockSize,
uint32 allocationType); uint32 allocationType);
virtual ~BBlockCache(); virtual ~BBlockCache();
void* Get(size_t blockSize); void* Get(size_t blockSize);
void Save(void *pointer, size_t blockSize); void Save(void *pointer, size_t blockSize);
private: private:
virtual void _ReservedBlockCache1(); virtual void _ReservedBlockCache1();
virtual void _ReservedBlockCache2(); virtual void _ReservedBlockCache2();
BBlockCache(const BBlockCache &); BBlockCache(const BBlockCache &);
BBlockCache &operator=(const BBlockCache &); BBlockCache &operator=(const BBlockCache &);
private:
struct _FreeBlock; struct _FreeBlock;
_FreeBlock* fFreeList; _FreeBlock* fFreeList;