added IPC syscalls

This commit is contained in:
user
2026-02-24 16:35:11 +01:00
parent 349155a556
commit 18d21a5f70
9 changed files with 171 additions and 3 deletions

View File

@@ -23,6 +23,10 @@ struct Vault {
Bellringer bellringer;
BBuffer<Key, 16> keys;
Semaphore keys_sem;
Thread* thread_list[32];
size_t thread_count = 0;
static constexpr int MAX_SEMS =32;
Semaphore sems[MAX_SEMS];