[orbis-kernel] impi: implement server ops

stub mkdir/rmdir syscalls
This commit is contained in:
DH 2023-08-20 15:39:18 +03:00
parent ca58c03eb6
commit 7ea6f3d91a
6 changed files with 76 additions and 6 deletions

View file

@ -106,10 +106,7 @@ public:
return {};
}
std::pair<IpmiServer *, bool> createIpmiServer(utils::kstring name,
std::uint32_t attrs,
std::int32_t initCount,
std::int32_t maxCount) {
std::pair<IpmiServer *, bool> createIpmiServer(utils::kstring name) {
std::lock_guard lock(m_sem_mtx);
auto [it, inserted] = mIpmiServers.try_emplace(std::move(name), nullptr);
if (inserted) {