[orbis-kernel] chroot bugfixes

reduce log spam
increase count of gcm buffers
This commit is contained in:
DH 2023-11-11 22:12:07 +03:00
parent 1f001101a4
commit e9dfaf2573
12 changed files with 60 additions and 27 deletions

View file

@ -659,7 +659,8 @@ SysResult sys_opmc_set_ctr(Thread *thread /* TODO */);
SysResult sys_opmc_get_ctr(Thread *thread /* TODO */);
SysResult sys_budget_create(Thread *thread /* TODO */);
SysResult sys_budget_delete(Thread *thread /* TODO */);
SysResult sys_budget_get(Thread *thread /* TODO */);
SysResult sys_budget_get(Thread *thread, sint id, ptr<void> a,
ptr<uint32_t> count);
SysResult sys_budget_set(Thread *thread, slong budget);
SysResult sys_virtual_query(Thread *thread, ptr<void> addr, uint64_t unk,
ptr<void> info, size_t infosz);

View file

@ -60,6 +60,7 @@ struct Process final {
kstring cwd;
kstring root = "/";
sint memoryContainer{1};
sint budgetId{1};
bool isInSandbox = false;
std::uint64_t nextTlsSlot = 1;