mirror of https://github.com/trapexit/mergerfs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
214 B
18 lines
214 B
#include "fuse_req.hpp"
|
|
|
|
#include "objpool.hpp"
|
|
|
|
|
|
static ObjPool<fuse_req_t> g_pool;
|
|
|
|
fuse_req_t*
|
|
fuse_req_alloc()
|
|
{
|
|
return g_pool.alloc();
|
|
}
|
|
|
|
void
|
|
fuse_req_free(fuse_req_t *req_)
|
|
{
|
|
return g_pool.free(req_);
|
|
}
|