X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fbox.c;h=095c8843ebdbe11d8b2342e45ab557339f1ab9d7;hb=65ff89923436ec785ce2b35d26827aa95ce8c3ce;hp=edfbace4b6a79d388d983aacc078bfacc6baff5a;hpb=d67cd4bc790332aacd4cdfcdd0fa2995e71334a8;p=eval.git diff --git a/src/box.c b/src/box.c index edfbace..095c884 100644 --- a/src/box.c +++ b/src/box.c @@ -266,6 +266,10 @@ valid_syscall(struct user *u) if (u->regs.ebx == box_pid) die("Commited suicide by signal %d.", (int)u->regs.ecx); return 0; + case __NR_tgkill: + if (u->regs.ebx == box_pid && u->regs.ecx == box_pid) + die("Commited suicide by signal %d.", (int)u->regs.edx); + return 0; default: return 0; }