kernel/signals: Update headers for syscalls.h changes

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
2024-12-26 02:23:12 +02:00
parent 95a8d6fb6f
commit 911caf7203
6 changed files with 282 additions and 208 deletions

View File

@ -64,7 +64,7 @@ namespace Tasking
{
int TCB::SendSignal(int sig)
{
return this->Parent->Signals.SendSignal((enum Signals)sig, {0}, this->ID);
return this->Parent->Signals.SendSignal((signal_t)sig, {0}, this->ID);
}
void TCB::SetState(TaskState state)