1
0
mirror of https://github.com/danog/libtgvoip.git synced 2024-12-02 09:37:52 +01:00
libtgvoip/BufferPool.h

33 lines
697 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;
2018-03-27 14:01:28 +02:00
unsigned char* buffers[1024];
2017-02-02 17:24:40 +01:00
tgvoip_mutex_t mutex;
};
}
2017-02-02 17:24:40 +01:00
#endif //LIBTGVOIP_BUFFERPOOL_H