Skip to content

Commit

Permalink
sched: add siginfo and signal user context to thread struct
Browse files Browse the repository at this point in the history
  • Loading branch information
jewelcodes committed Nov 27, 2024
1 parent 589e6cb commit eb4f6d2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/include/kernel/sched.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ typedef struct Thread {
void *signals;
SignalQueue *signalQueue;
uintptr_t signalTrampoline;
uintptr_t siginfo;
uintptr_t signalUserContext;

SyscallRequest syscall; // for when the thread is blocked
int exitStatus; // for zombie threads
Expand Down

0 comments on commit eb4f6d2

Please sign in to comment.