2014-09-27 06:31:22 +08:00
|
|
|
/*
|
2016-01-15 05:50:22 +08:00
|
|
|
Copyright (c) 2016, Antonio SJ Musumeci <trapexit@spawn.link>
|
2014-09-27 06:31:22 +08:00
|
|
|
|
2016-01-15 05:50:22 +08:00
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
|
|
copyright notice and this permission notice appear in all copies.
|
2014-09-27 06:31:22 +08:00
|
|
|
|
2016-01-15 05:50:22 +08:00
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2014-09-27 06:31:22 +08:00
|
|
|
*/
|
|
|
|
|
2019-01-07 01:52:55 +08:00
|
|
|
#include "config.hpp"
|
2017-04-11 20:53:46 +08:00
|
|
|
#include "dirinfo.hpp"
|
|
|
|
|
2019-01-07 01:52:55 +08:00
|
|
|
#include <fuse.h>
|
|
|
|
|
2019-01-25 20:03:46 +08:00
|
|
|
namespace l
|
2017-04-11 20:53:46 +08:00
|
|
|
{
|
2019-01-07 01:52:55 +08:00
|
|
|
static
|
|
|
|
int
|
|
|
|
releasedir(DirInfo *di_)
|
|
|
|
{
|
|
|
|
delete di_;
|
2017-04-11 20:53:46 +08:00
|
|
|
|
2019-01-07 01:52:55 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2017-04-11 20:53:46 +08:00
|
|
|
}
|
|
|
|
|
2019-01-25 20:03:46 +08:00
|
|
|
namespace FUSE
|
2014-09-27 06:31:22 +08:00
|
|
|
{
|
2019-01-25 20:03:46 +08:00
|
|
|
int
|
2020-11-16 08:12:33 +08:00
|
|
|
releasedir(const fuse_file_info_t *ffi_)
|
2014-09-27 06:31:22 +08:00
|
|
|
{
|
2019-01-25 20:03:46 +08:00
|
|
|
DirInfo *di = reinterpret_cast<DirInfo*>(ffi_->fh);
|
|
|
|
|
|
|
|
return l::releasedir(di);
|
2014-09-27 06:31:22 +08:00
|
|
|
}
|
|
|
|
}
|