From: Cristiano Giuffrida Date: Tue, 22 Jun 2010 15:10:06 +0000 (+0000) Subject: Fix misplaced comment. X-Git-Tag: v3.1.8~402 X-Git-Url: http://zhaoyanbai.com/repos/Bv9ARM.ch02.html?a=commitdiff_plain;h=ad1f2f2d789ce7917ac8ba22fa4417739fb5b543;p=minix.git Fix misplaced comment. --- diff --git a/servers/rs/manager.c b/servers/rs/manager.c index f37a7c31b..efb02be17 100644 --- a/servers/rs/manager.c +++ b/servers/rs/manager.c @@ -453,11 +453,7 @@ struct rproc *rp; init_privs(rp, &rp->r_priv); } - /* Set and synch the privilege structure for the new service. - * In case the following fails, we can't kill the process as no signal - * manager has been assigned yet. The solution is to directly call - * terminate_service() without sending any signal to the process. - */ + /* Set and synch the privilege structure for the new service. */ if ((s = sys_privctl(child_proc_nr_e, SYS_PRIV_SET_SYS, &rp->r_priv)) != OK || (s = sys_getpriv(&rp->r_priv, child_proc_nr_e)) != OK) { printf("unable to set privilege structure: %d\n", s);