Skip to content

Commit

Permalink
sched: track sender thread in signal queue
Browse files Browse the repository at this point in the history
  • Loading branch information
jewelcodes committed Nov 26, 2024
1 parent 2eae8de commit bc4bc29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/include/kernel/sched.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
typedef struct SignalQueue {
struct SignalQueue *next;
int signum;
uintptr_t handler;
struct Thread *sender;
} SignalQueue;

typedef struct Thread {
Expand Down

0 comments on commit bc4bc29

Please sign in to comment.