Commit 3c9c3c5b authored by Xiao Lu's avatar Xiao Lu
Browse files

2

parent c9b6cf2c
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
......@@ -143,7 +143,7 @@ void sighandle(void) {
int bit = (unsigned long)(p->killed) % len;
p->sig_pending.__val[i] &= ~(1ul << bit++);
p->killed = 0;
__debug_info("finish1\n");
// __debug_info("finish1\n");
for (; i < SIGSET_LEN; i ++) {
while (bit < len) {
if (p->sig_pending.__val[i] & (1ul << bit)) {
......@@ -166,7 +166,7 @@ void sighandle(void) {
ksigaction_t *sigact;
start_handle:
// search for signal handler
// __debug_info("[sighandle] start handler signum=%d\n", signum);
__debug_info("[sighandle] start handler signum=%d\n", signum);
sigact = __search_sig(p, signum);
// fast skip
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment