1
0
mirror of https://github.com/danog/libtgvoip.git synced 2024-11-26 20:24:38 +01:00
libtgvoip/BufferPool.h

33 lines
686 B
C
Raw Normal View History

2017-02-02 17:24:40 +01:00
//
// libtgvoip is free and unencumbered public domain software.
// For more information, see http://unlicense.org or the UNLICENSE file
// you should have received with this source code distribution.
//
#ifndef LIBTGVOIP_BUFFERPOOL_H
#define LIBTGVOIP_BUFFERPOOL_H
#include <stdint.h>
#include "threading.h"
namespace tgvoip{
class BufferPool{
2017-02-02 17:24:40 +01:00
public:
BufferPool(unsigned int size, unsigned int count);
~BufferPool();
2017-02-02 17:24:40 +01:00
unsigned char* Get();
void Reuse(unsigned char* buffer);
size_t GetSingleBufferSize();
size_t GetBufferCount();
2017-02-02 17:24:40 +01:00
private:
uint64_t usedBuffers;
int bufferCount;
size_t size;
2017-02-02 17:24:40 +01:00
unsigned char* buffers[64];
2018-05-15 20:23:46 +02:00
Mutex mutex;
2017-02-02 17:24:40 +01:00
};
}
2017-02-02 17:24:40 +01:00
#endif //LIBTGVOIP_BUFFERPOOL_H