Skip to content

Commit

Permalink
ipc: reworking signal mechanism
Browse files Browse the repository at this point in the history
  • Loading branch information
jewelcodes committed Nov 11, 2024
1 parent 3ce6a59 commit 3196c85
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ipc/signal.c
Original file line number Diff line number Diff line change
Expand Up @@ -170,5 +170,6 @@ int kill(Thread *t, pid_t pid, int sig) {
if(!dest) return -ESRCH;
if(!sig) return 0; // verified that pid exists

return platformSendSignal(t, dest, sig);
/* todo */
return 0;
}

0 comments on commit 3196c85

Please sign in to comment.